Skip to content

Commit

Permalink
Update all babel dependencies and update .babelrc
Browse files Browse the repository at this point in the history
  • Loading branch information
ThaNarie committed Nov 29, 2018
1 parent 814a743 commit 1877c95
Show file tree
Hide file tree
Showing 3 changed files with 1,463 additions and 580 deletions.
13 changes: 8 additions & 5 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@
"loose": true,
"useBuiltIns": false
}],
"@babel/preset-stage-3",
"@babel/typescript"
],
"plugins": [
["@babel/plugin-transform-runtime", {
"helpers": true,
"polyfill": true,
"regenerator": false,
"moduleName": "@babel/runtime"
}]
"corejs": 2,
"regenerator": false
}],
"@babel/plugin-syntax-dynamic-import",
"@babel/plugin-syntax-import-meta",
["@babel/plugin-proposal-class-properties", { "loose": false }],
"@babel/plugin-proposal-json-strings"

],
"env": {
"test": {
Expand Down
22 changes: 13 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tslint-teamcity-reporter",
"version": "3.0.1",
"version": "3.1.0",
"description": "A TSLint formatter/reporter for use in TeamCity which groups by files using TeamCity Test Suite",
"main": "./index.js",
"types": "./index.d.ts",
Expand Down Expand Up @@ -59,13 +59,17 @@
"url": "https://github.com/ThaNarie/tslint-teamcity-reporter.git"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.35",
"@babel/core": "^7.0.0-beta.35",
"@babel/plugin-transform-runtime": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"@babel/preset-stage-3": "^7.0.0-beta.35",
"@babel/preset-typescript": "^7.0.0-beta.35",
"@babel/register": "^7.0.0-beta.35",
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-stage-3": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/register": "^7.0.0",
"@types/chai": "^4.0.10",
"@types/mocha": "^2.2.44",
"@types/sinon": "^4.1.2",
Expand Down Expand Up @@ -101,6 +105,6 @@
"typescript": "^2.6.2"
},
"dependencies": {
"@babel/runtime": "^7.0.0-beta.35"
"@babel/runtime-corejs2": "^7.1.5"
}
}
Loading

0 comments on commit 1877c95

Please sign in to comment.