Skip to content

Commit

Permalink
Update dev dependencies (projectfluent#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
stasm authored Apr 11, 2019
1 parent 5fb64c5 commit a328b86
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion fluent-gecko/xpcom_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import nodeResolve from 'rollup-plugin-node-resolve';
import bundleConfig from '../bundle_config';

export default Object.assign({}, bundleConfig, {
preferConst: true,
context: 'this',
output: {
format: 'es',
preferConst: true,
banner: `\
/* vim: set ts=2 et sw=2 tw=80 filetype=javascript: */
Expand Down
2 changes: 1 addition & 1 deletion fluent-gecko/xpcom_dom_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export default Object.assign({}, bundleConfig, {
],
output: {
format: 'es',
preferConst: true,
banner: `/* vim: set ts=2 et sw=2 tw=80 filetype=javascript: */
/* Copyright 2017 Mozilla Foundation and others
Expand All @@ -24,6 +25,5 @@ export default Object.assign({}, bundleConfig, {
* limitations under the License.
*/\n\n`,
},
preferConst: true,
context: 'this'
});
2 changes: 1 addition & 1 deletion fluent/test/bomb_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ suite('Reference bombs', function() {

// XXX Protect the FTL Resolver against the billion laughs attack
// https://bugzil.la/1307126
it.skip('does not expand all placeables', function() {
test.skip('does not expand all placeables', function() {
const msg = bundle.getMessage('lolz');
const val = bundle.format(msg, args, errs);
assert.equal(val, '???');
Expand Down
2 changes: 1 addition & 1 deletion fluent/test/functions_runtime_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ suite('Runtime-specific functions', function() {

// XXX When they are passed as variables, convert JS types to FTL types
// https://bugzil.la/1307116
it.skip('works for numbers', function() {
test.skip('works for numbers', function() {
const msg = bundle.getMessage('bar');
const val = bundle.format(msg, args, errs);
assert.equal(val, '3');
Expand Down
4 changes: 2 additions & 2 deletions fluent/test/functions_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ suite('Functions', function() {

// XXX Gracefully handle wrong argument types passed into FTL Functions
// https://bugzil.la/1307124
it.skip('falls back when arguments don\'t match the arity', function() {
test.skip('falls back when arguments don\'t match the arity', function() {
const msg = bundle.getMessage('pass-nothing');
const val = bundle.format(msg, args, errs);
assert.equal(val, 'IDENTITY()');
Expand Down Expand Up @@ -83,7 +83,7 @@ suite('Functions', function() {

// XXX Accept complex types (e.g. attributes) as arguments to FTL Functions
// https://bugzil.la/1307120
it.skip('accepts attributes', function() {
test.skip('accepts attributes', function() {
const msg = bundle.getMessage('pass-attr');
const val = bundle.format(msg, args, errs);
assert.equal(val, 'Attribute');
Expand Down
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,28 @@
"node": ">=8.9.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.47",
"@babel/plugin-proposal-async-generator-functions": "^7.0.0-beta.47",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.47",
"@babel/plugin-transform-modules-commonjs": "^7.0.0-beta.47",
"@babel/polyfill": "^7.0.0-beta.47",
"@babel/preset-env": "^7.0.0-beta.47",
"@babel/register": "^7.0.0-beta.47",
"babel-eslint": "^8.2.3",
"colors": "^1.1.2",
"commander": "^2.12",
"eslint": "^4.18.1",
"eslint-plugin-mocha": "^4.11.0",
"esm": "^3.0.34",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/register": "^7.4.0",
"babel-eslint": "^10.0.1",
"colors": "^1.3.3",
"commander": "^2.20",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"esm": "^3.2.22",
"fuzzer": "^0.2.1",
"gh-pages": "^1.1.0",
"gh-pages": "^2.0.1",
"jsdoc": "^3.5.5",
"mocha": "^4.1.0",
"nyc": "^13.0.1",
"mocha": "^6.1.2",
"nyc": "^13.3.0",
"prettyjson": "^1.2.1",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^4.0.0-beta.4",
"rollup-plugin-node-resolve": "^3.0.3",
"rollup": "^1.9.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.2.2",
"intl-pluralrules": "^1.0.0"
}
}

0 comments on commit a328b86

Please sign in to comment.