Beta versions of coffeescript packages compatible with 1.6-beta.30.

New coffeescript* versions are necessary because we've bumped the major
versions of babel-compiler and babel-runtime.

To verify that these new versions work, create a new app with

  meteor create --release 1.6-beta.30 new-app

and then add coffeescript to it:

  cd new-app
  meteor add coffeescript@1.12.7-2-beta.30

If everything works, you should get -beta.30 versions of coffeescript and
coffeescript-compiler, instead of something earlier.

cc @GeoffreyBooth
This commit is contained in:
Ben Newman
2017-09-18 19:30:42 -04:00
parent bfea51815a
commit b2df97b786
3 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ Package.describe({
summary: 'Compiler for CoffeeScript code, supporting the coffeescript package',
// This version of NPM `coffeescript` module, with _1, _2 etc.
// If you change this, make sure to also update ../coffeescript/package.js to match.
version: '1.12.7_2'
version: '1.12.7-2-beta.30'
});
Npm.depends({

View File

@@ -1,10 +1,10 @@
Package.describe({
summary: "Used by the coffeescript package's tests",
version: "1.0.9"
version: "1.0.10-beta.30"
});
Package.onUse(function (api) {
api.use('coffeescript@1.12.7', ['client', 'server']);
api.use('coffeescript@1.12.7-2-beta.30', ['client', 'server']);
api.export('COFFEESCRIPT_EXPORTED');
api.export('COFFEESCRIPT_EXPORTED_ONE_MORE');
api.export('COFFEESCRIPT_EXPORTED_WITH_BACKTICKS');

View File

@@ -6,7 +6,7 @@ Package.describe({
// so bumping the version of this package will be how they get newer versions
// of `coffeescript-compiler`. If you change this, make sure to also update
// ../coffeescript-compiler/package.js to match.
version: '1.12.7_2'
version: '1.12.7-2-beta.30'
});
Package.registerBuildPlugin({
@@ -14,7 +14,7 @@ Package.registerBuildPlugin({
use: [
'caching-compiler@1.1.9',
'ecmascript@0.8.2',
'coffeescript-compiler@=1.12.7_2'
'coffeescript-compiler@=1.12.7-2-beta.30'
],
sources: ['compile-coffeescript.js']
});