Update dependencies for compatibility with Babel 7
Upgrade the dependencies used for adding dependency injection annotations to Angular components and services, and the libs used for code coverage reporting. - Replace browserify-ngannotate with babel-plugin-angularjs-annotate. The repo's README states that the former is unmaintained and the latter is the successor. - Replace browserify-istanbul + isparta + karma-coverage for code coverage reporting with babel-plugin-istanbul + karma-coverage-istanbul-reporter. babel-plugin-istanbul is the recommended method for instrumenting code using current versions of Istanbul. The karma-coverage reporter uses an old version of Istanbul. karma-coverage-istanbul-reporter is a reporter that uses the current version and is intended to be used alongside the Babel plugin. - Upgrade karma and karma-browserify
Showing
... | @@ -19,11 +19,11 @@ | ... | @@ -19,11 +19,11 @@ |
"autofill-event": "0.0.1", | "autofill-event": "0.0.1", | ||
"autoprefixer": "^9.4.7", | "autoprefixer": "^9.4.7", | ||
"aws-sdk": "^2.345.0", | "aws-sdk": "^2.345.0", | ||
"babel-plugin-angularjs-annotate": "^0.9.0", | |||
"babel-plugin-istanbul": "^5.1.0", | |||
"babel-preset-env": "^1.7.0", | "babel-preset-env": "^1.7.0", | ||
"babelify": "^10.0.0", | "babelify": "^10.0.0", | ||
"browserify": "^16.2.3", | "browserify": "^16.2.3", | ||
"browserify-istanbul": "^2.0.0", | |||
"browserify-ngannotate": "^2.0.0", | |||
"browserify-shim": "^3.8.12", | "browserify-shim": "^3.8.12", | ||
"browserify-versionify": "^1.0.6", | "browserify-versionify": "^1.0.6", | ||
"chai": "^4.1.2", | "chai": "^4.1.2", | ||
... | @@ -64,14 +64,12 @@ | ... | @@ -64,14 +64,12 @@ |
"gulp-sourcemaps": "^2.6.4", | "gulp-sourcemaps": "^2.6.4", | ||
"gulp-util": "^3.0.7", | "gulp-util": "^3.0.7", | ||
"hammerjs": "^2.0.4", | "hammerjs": "^2.0.4", | ||
"isparta": "^4.0.0", | |||
"istanbul": "^0.4.5", | |||
"jquery": "^3.2.1", | "jquery": "^3.2.1", | ||
"js-polyfills": "^0.1.16", | "js-polyfills": "^0.1.16", | ||
"karma": "^4.0.0", | "karma": "^4.0.0", | ||
"karma-browserify": "^6.0.0", | "karma-browserify": "^6.0.0", | ||
"karma-chai": "^0.1.0", | "karma-chai": "^0.1.0", | ||
"karma-coverage": "^1.1.1", | "karma-coverage-istanbul-reporter": "^2.0.4", | ||
"karma-mocha": "^1.1.1", | "karma-mocha": "^1.1.1", | ||
"karma-mocha-reporter": "^2.0.4", | "karma-mocha-reporter": "^2.0.4", | ||
"karma-phantomjs-launcher": "^1.0.1", | "karma-phantomjs-launcher": "^1.0.1", | ||
... | @@ -113,7 +111,6 @@ | ... | @@ -113,7 +111,6 @@ |
}, | }, | ||
"browserify": { | "browserify": { | ||
"transform": [ | "transform": [ | ||
"browserify-ngannotate", | |||
"browserify-shim", | "browserify-shim", | ||
"browserify-versionify", | "browserify-versionify", | ||
[ | [ | ||
... | ... |
Please register or sign in to comment