Skip to content
This repository was archived by the owner on Jan 31, 2023. It is now read-only.

Commit 2270971

Browse files
committed
upgrade all dependencies to latest versions
1 parent 203166f commit 2270971

File tree

4 files changed

+26
-26
lines changed

4 files changed

+26
-26
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ If you pass one of the top-level options in (`extensions`, `transform`, etc), it
8080
ast: false,
8181
babelrc: false,
8282
plugins: ['babel-plugin-add-module-exports'],
83-
presets: ['babel-preset-env', 'babel-preset-react']
83+
presets: ['@babel/preset-env', '@babel/preset-react']
8484
},
8585
]
8686
],

__snapshots__/e2e_spec.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
exports['browserify preprocessor - e2e correctly preprocesses the file 1'] = `
22
(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error("Cannot find module '"+i+"'");throw a.code="MODULE_NOT_FOUND",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u="function"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()({1:[function(require,module,exports){
3-
'use strict';
3+
"use strict";
44
55
it('is a test', function () {
66
var a = 1,
77
b = 2;
8-
98
expect(a).to.equal(1);
109
expect(b).to.equal(2);
1110
expect(Math.min.apply(Math, [3, 4])).to.equal(3);

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const defaultOptions = {
3030
plugins: ['babel-plugin-add-module-exports'].map(require.resolve),
3131
// babel-preset-env supports any JS that's stage-4, meaning it's
3232
// completely finalized in the ECMA standard
33-
presets: ['babel-preset-env', 'babel-preset-react'].map(require.resolve),
33+
presets: ['@babel/preset-env', '@babel/preset-react'].map(require.resolve),
3434
},
3535
],
3636
],

package.json

Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -39,39 +39,40 @@
3939
"semantic-release": "semantic-release pre && npm publish --access public && semantic-release post"
4040
},
4141
"devDependencies": {
42-
"ban-sensitive-files": "1.9.0",
42+
"ban-sensitive-files": "1.9.2",
4343
"chai": "4.1.2",
4444
"chokidar-cli": "1.2.0",
45-
"condition-circle": "1.5.0",
46-
"dependency-check": "2.9.1",
47-
"deps-ok": "1.2.1",
45+
"condition-circle": "2.0.1",
46+
"dependency-check": "3.2.0",
47+
"deps-ok": "1.4.1",
4848
"dont-crack": "1.2.1",
49-
"eslint": "4.6.1",
50-
"eslint-plugin-cypress-dev": "1.1.1",
51-
"eslint-plugin-mocha": "4.11.0",
49+
"eslint": "5.2.0",
50+
"eslint-plugin-cypress-dev": "1.1.2",
51+
"eslint-plugin-mocha": "5.1.0",
5252
"github-post-release": "1.13.1",
5353
"husky": "0.14.3",
54-
"license-checker": "13.0.3",
55-
"mocha": "3.5.0",
54+
"license-checker": "20.2.0",
55+
"mocha": "5.2.0",
5656
"mockery": "2.1.0",
57-
"nsp": "2.7.0",
58-
"semantic-release": "8.2.0",
59-
"simple-commit-message": "3.3.1",
60-
"sinon": "3.2.1",
61-
"sinon-chai": "2.13.0",
57+
"nsp": "3.2.1",
58+
"semantic-release": "15.9.3",
59+
"simple-commit-message": "4.0.3",
60+
"sinon": "6.1.4",
61+
"sinon-chai": "3.2.0",
6262
"snap-shot-it": "5.0.1"
6363
},
6464
"dependencies": {
65+
"@babel/core": "7.0.0-beta.55",
66+
"@babel/preset-env": "7.0.0-beta.55",
67+
"@babel/preset-react": "7.0.0-beta.55",
6568
"babel-plugin-add-module-exports": "0.2.1",
66-
"babel-preset-env": "1.6.0",
67-
"babel-preset-react": "6.24.1",
68-
"babelify": "7.3.0",
69-
"bluebird": "3.5.0",
70-
"browserify": "14.4.0",
69+
"babelify": "9.0.0",
70+
"bluebird": "3.5.1",
71+
"browserify": "16.2.2",
7172
"cjsxify": "0.3.0",
72-
"debug": "3.0.1",
73-
"fs-extra": "4.0.1",
74-
"watchify": "3.9.0"
73+
"debug": "3.1.0",
74+
"fs-extra": "7.0.0",
75+
"watchify": "3.11.0"
7576
},
7677
"release": {
7778
"verifyConditions": "condition-circle",

0 commit comments

Comments
 (0)