Skip to content

Commit

Permalink
pkg: babel to 7.12
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires @babel/core and @babel/runtime of at least
7.12
  • Loading branch information
ntucker committed Oct 15, 2020
1 parent 68f3693 commit c872245
Show file tree
Hide file tree
Showing 5 changed files with 222 additions and 20,788 deletions.
6 changes: 3 additions & 3 deletions examples/linaria/package.json
Expand Up @@ -3,7 +3,7 @@
"version": "1.0.12",
"private": true,
"scripts": {
"start": "webpack-dev-server --mode=development",
"start": "webpack serve --mode=development",
"prod": "serve ./dist",
"build": "webpack --mode=production",
"build:server": "webpack --mode=production --target=node",
Expand All @@ -22,7 +22,7 @@
"@anansi/browserslist-config": "^1.0.1",
"@anansi/eslint-plugin": "^0.9.14",
"@anansi/webpack-config": "^4.2.5",
"@babel/core": "7.11.0",
"@babel/core": "7.12.0",
"@types/classnames": "^2.2.9",
"@types/react": "^16.9.25",
"@types/react-dom": "^16.9.5",
Expand All @@ -35,7 +35,7 @@
},
"dependencies": {
"@anansi/polyfill": "^1.0.12",
"@babel/runtime": "^7.11.0",
"@babel/runtime": "^7.12.0",
"classnames": "^2.2.6",
"core-js": "^3.6.4",
"linaria": "^2.0.0-rc.1",
Expand Down
6 changes: 3 additions & 3 deletions examples/typescript/package.json
Expand Up @@ -3,7 +3,7 @@
"version": "4.2.1",
"private": true,
"scripts": {
"start": "webpack-dev-server --mode=development",
"start": "webpack serve --mode=development",
"prod": "serve ./dist",
"build": "webpack --mode=production",
"build:server": "webpack --mode=production --target=node",
Expand All @@ -22,7 +22,7 @@
"@anansi/browserslist-config": "^1.0.1",
"@anansi/eslint-plugin": "^0.9.14",
"@anansi/webpack-config": "^4.2.5",
"@babel/core": "7.11.6",
"@babel/core": "7.12.0",
"@rest-hooks/test": "^2.0.0-k.0",
"@types/classnames": "^2.2.9",
"@types/react": "^16.9.25",
Expand All @@ -38,7 +38,7 @@
},
"dependencies": {
"@anansi/polyfill": "^1.0.12",
"@babel/runtime": "^7.11.0",
"@babel/runtime": "^7.12.0",
"@rest-hooks/rest": "^0.4.0",
"antd": "^4.5.4",
"classnames": "^2.2.6",
Expand Down
14 changes: 7 additions & 7 deletions packages/babel-preset-anansi/package.json
Expand Up @@ -33,17 +33,17 @@
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.12.0",
"@babel/plugin-proposal-private-methods": "^7.10.4",
"@babel/plugin-syntax-function-bind": "^7.10.4",
"@babel/plugin-syntax-top-level-await": "^7.10.4",
"@babel/plugin-transform-flow-strip-types": "^7.10.4",
"@babel/plugin-transform-object-assign": "^7.10.4",
"@babel/plugin-transform-react-constant-elements": "^7.10.4",
"@babel/plugin-transform-react-inline-elements": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/plugin-transform-typescript": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/plugin-transform-runtime": "^7.12.0",
"@babel/plugin-transform-typescript": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.10.4",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-macros": "^2.8.0",
Expand All @@ -56,11 +56,11 @@
"stable": "^0.1.8"
},
"devDependencies": {
"@babel/core": "^7.11.0"
"@babel/core": "^7.12.0"
},
"peerDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.0",
"@babel/core": "^7.12.0",
"@babel/runtime": "^7.12.0",
"babel-minify": "^0.5.1",
"react-hot-loader": "^4.12.0",
"react-refresh": "^0.8.0"
Expand Down

0 comments on commit c872245

Please sign in to comment.