Skip to content

Commit

Permalink
Update yarn.lock (#674)
Browse files Browse the repository at this point in the history
**What**: Resolves #669 

**Why**: Current yarn.lock blocks dtslint to download new TS versions.

**How**: Update package.json and yarn.lock

**Checklist**:
<!-- add "N/A" to the end of each line that's irrelevant to your changes -->
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->
- [N/A] Documentation
- [x] Tests
- [x] Code complete

Snapshots of babel-plugin-emotion are changed when I update `@babel` things to `7.0.0-beta.41` or higher. I cannot figure out why... Maybe [this PR](babel/babel#7417) is related with the problem.
  • Loading branch information
Ailrun authored and emmatown committed May 25, 2018
1 parent 274223f commit 3129e32
Show file tree
Hide file tree
Showing 5 changed files with 3,155 additions and 2,852 deletions.
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"**/react-dom": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.32",
"@babel/plugin-external-helpers": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"@babel/preset-flow": "^7.0.0-beta.32",
"@babel/preset-react": "^7.0.0-beta.32",
"@babel/preset-stage-0": "^7.0.0-beta.32",
"@babel/core": "7.0.0-beta.40",
"@babel/plugin-external-helpers": "7.0.0-beta.40",
"@babel/preset-env": "7.0.0-beta.40",
"@babel/preset-flow": "7.0.0-beta.40",
"@babel/preset-react": "7.0.0-beta.40",
"@babel/preset-stage-0": "7.0.0-beta.40",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-eslint": "^8.2.3",
"babel-flow-types": "^1.2.2",
"babel-jest": "^20.0.3",
"babel-plugin-closure-elimination": "^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-plugin-emotion/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"clean": "rimraf lib"
},
"dependencies": {
"@babel/helper-module-imports": "7.0.0-beta.32",
"@babel/helper-module-imports": "7.0.0-beta.40",
"@emotion/babel-utils": "^0.5.3",
"@emotion/hash": "^0.6.2",
"@emotion/memoize": "^0.6.1",
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-plugin-emotion/test/macro.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ describe('styled macro', () => {
`
expect(() =>
babel6.transform(basic, {
plugins: [require('babel-macros')],
plugins: [require('babel-plugin-macros')],
filename: __filename,
babelrc: false
})
Expand All @@ -226,7 +226,7 @@ describe('styled macro', () => {
`
expect(() =>
babel7.transform(basic, {
plugins: ['module:babel-macros'],
plugins: ['module:babel-plugin-macros'],
filename: __filename,
babelrc: false
})
Expand Down
1 change: 1 addition & 0 deletions packages/site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"styled-system": "^1.0.8",
"unified": "^6.1.6",
"unist-util-visit": "^1.2.0",
"webpack-bundle-analyzer": "2.9.0",
"worker-loader": "1.0.0"
},
"keywords": [
Expand Down
Loading

0 comments on commit 3129e32

Please sign in to comment.