Skip to content

Commit

Permalink
Review by J霉nli脿ng
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Jan 8, 2020
1 parent a049ea9 commit ef4edea
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -20,6 +20,8 @@ dist
package-lock.json
!/.github/actions/*/package-lock.json

/packages/babel-compat-data/build

/packages/babel-runtime/helpers/*.js
!/packages/babel-runtime/helpers/toArray.js
!/packages/babel-runtime/helpers/iterableToArray.js
Expand Down
6 changes: 4 additions & 2 deletions packages/babel-compat-data/package.json
Expand Up @@ -19,7 +19,8 @@
},
"keywords": [
"babel",
"babel-plugin"
"compat-table",
"compat-data"
],
"dependencies": {
"browserslist": "^4.8.2",
Expand All @@ -29,6 +30,7 @@
"devDependencies": {
"caniuse-db": "1.0.30000969",
"electron-to-chromium": "1.3.113",
"lodash": "^4.17.15"
"lodash": "^4.17.15",
"@babel/helper-compilation-targets": "^0.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/babel-compat-data/scripts/build-data.js
Expand Up @@ -7,7 +7,7 @@ const flattenDeep = require("lodash/flattenDeep");
const isEqual = require("lodash/isEqual");
const mapValues = require("lodash/mapValues");
const pickBy = require("lodash/pickBy");
const { unreleasedLabels } = require("../../babel-helper-compilation-targets");
const { unreleasedLabels } = require("babel/helper-compilation-targets");
const electronToChromiumVersions = require("electron-to-chromium").versions;

const electronToChromiumKeys = Object.keys(
Expand Down
4 changes: 3 additions & 1 deletion packages/babel-helper-compilation-targets/package.json
Expand Up @@ -3,9 +3,11 @@
"version": "0.0.0",
"author": "The Babel Team (https://babeljs.io/team)",
"license": "MIT",
"description": "",
"description": "Engine compat data used in @babel/preset-env",
"repository": "https://github.com/babel/babel/tree/master/packages/babel-helper-compilation-targets",
"main": "lib/index.js",
"type": "commonjs",
"exports": false,
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit ef4edea

Please sign in to comment.