Skip to content

Commit 7900a1f

Browse files
committed
chore: bump devDependencies, fix eslint and jest cases
1 parent 9788600 commit 7900a1f

16 files changed

+1809
-714
lines changed

.commitlintrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"extends": [
3-
"@commitlint/config-conventional"
3+
"@1stg"
44
]
55
}

.eslintrc.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const { resolve } = require('path')
2-
const { jest, js, ts, md } = require('@1stg/eslint-config/overrides')
2+
const { jest, js, test, ts, mdx } = require('@1stg/eslint-config/overrides')
33
const { merge } = require('lodash')
44

55
module.exports = {
@@ -19,6 +19,7 @@ module.exports = {
1919
files: '*.{js,ts}',
2020
},
2121
jest,
22-
md,
22+
mdx,
23+
test,
2324
],
2425
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ npm i -D babel-preset-proposal-typescript
7171
### Via CLI
7272

7373
```sh
74-
babel input.ts --presets proposal-typescript > output.ts
74+
babel input.ts --presets proposal-typescript >output.ts
7575
```
7676

7777
### Via Node API

babel.config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module.exports = {
22
presets: [
3+
'proposal-typescript',
4+
'@babel/typescript',
35
[
46
'@babel/env',
57
{
@@ -8,7 +10,5 @@ module.exports = {
810
},
911
},
1012
],
11-
'@babel/typescript',
12-
'proposal-typescript',
1313
],
1414
}

package.json

+32-34
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,12 @@
88
"engines": {
99
"node": ">=6.9.0"
1010
},
11-
"main": "lib/cjs.js",
12-
"module": "lib/esm.js",
13-
"es2015": "lib/es2015.js",
14-
"scripts": {
15-
"build": "r",
16-
"lint": "EFF_NO_LINK_RULES=true eslint . --ext js,md,ts -f friendly",
17-
"pretest": "yarn build",
18-
"test": "jest",
19-
"prepublishOnly": "yarn test",
20-
"postinstall": "bash scripts/postinstall.sh || exit 0"
21-
},
11+
"main": "lib/cjs",
12+
"module": "lib/esm",
13+
"es2015": "lib/es2015",
14+
"files": [
15+
"lib"
16+
],
2217
"keywords": [
2318
"babel-preset",
2419
"babel-preset-ts",
@@ -28,11 +23,16 @@
2823
"babel-typescript",
2924
"typescript"
3025
],
31-
"files": [
32-
"lib"
33-
],
26+
"scripts": {
27+
"build": "r",
28+
"lint": "eslint . --ext js,md,ts -f friendly",
29+
"postinstall": "bash scripts/postinstall.sh || exit 0",
30+
"prepublishOnly": "yarn test",
31+
"pretest": "r",
32+
"test": "jest"
33+
},
3434
"peerDependencies": {
35-
"@babel/core": "^7.6.0",
35+
"@babel/core": "^7.6.2",
3636
"typescript": "^3.0.0"
3737
},
3838
"dependencies": {
@@ -54,32 +54,30 @@
5454
"@babel/plugin-syntax-typescript": "^7.3.3"
5555
},
5656
"devDependencies": {
57-
"@1stg/eslint-config": "^0.9.3",
58-
"@1stg/husky-config": "^0.3.0",
59-
"@1stg/lint-staged": "^0.6.0",
60-
"@1stg/prettier-config": "^0.2.0",
61-
"@1stg/remark-config": "^0.2.1",
62-
"@1stg/rollup-config": "^0.9.3",
63-
"@1stg/tsconfig": "^0.5.0",
64-
"@babel/cli": "^7.6.0",
65-
"@babel/core": "^7.6.0",
66-
"@babel/parser": "^7.6.0",
67-
"@babel/preset-env": "^7.6.0",
57+
"@1stg/commitlint-config": "^0.1.0",
58+
"@1stg/eslint-config": "^0.12.20",
59+
"@1stg/husky-config": "^0.3.1",
60+
"@1stg/lint-staged": "^0.8.6",
61+
"@1stg/prettier-config": "^0.4.2",
62+
"@1stg/remark-config": "^0.2.2",
63+
"@1stg/tsconfig": "^0.6.0",
64+
"@babel/cli": "^7.6.2",
65+
"@babel/core": "^7.6.2",
66+
"@babel/parser": "^7.6.2",
67+
"@babel/preset-env": "^7.6.2",
6868
"@babel/preset-typescript": "^7.6.0",
69-
"@commitlint/cli": "^8.1.0",
70-
"@commitlint/config-conventional": "^8.1.0",
69+
"@commitlint/cli": "^8.2.0",
70+
"@pkgr/rollup": "^0.2.4",
7171
"@types/babel__core": "^7.1.3",
7272
"@types/jest": "^24.0.18",
73-
"babel-eslint": "^11.0.0-beta.0",
7473
"babel-jest": "^24.9.0",
7574
"babel-preset-proposal-typescript": "link:.",
76-
"eslint": "^6.3.0",
77-
"eslint-formatter-friendly": "^7.0.0",
78-
"husky": "^3.0.5",
75+
"eslint": "^6.5.1",
76+
"husky": "^3.0.8",
7977
"jest": "^24.9.0",
80-
"lint-staged": "^9.2.5",
78+
"lint-staged": "^9.4.1",
8179
"prettier": "^1.18.2",
82-
"rollup": "^1.21.2",
80+
"rollup": "^1.23.1",
8381
"typescript": "^3.6.3"
8482
}
8583
}

test/.eslintrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rules": {
3+
"no-magic-numbers": 0
4+
}
5+
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`class-properties 1`] = `"Unexpected token ;"`;
3+
exports[`class-properties 1`] = `"Unexpected token ';'"`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`do-expressions 1`] = `"Unexpected token )"`;
3+
exports[`do-expressions 1`] = `"Unexpected token ')'"`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`logical-assignment-operators 1`] = `"Unexpected token )"`;
3+
exports[`logical-assignment-operators 1`] = `"Unexpected token ')'"`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`nullish-coalescing-operator 1`] = `"Unexpected token ."`;
3+
exports[`nullish-coalescing-operator 1`] = `"Unexpected token '.'"`;

test/__snapshots__/optional-chaining.spec.ts.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`optional-chaining 1`] = `"Unexpected token ."`;
3+
exports[`optional-chaining 1`] = `"Unexpected token '.'"`;
44

55
exports[`optional-chaining 2`] = `"Cannot read property '0' of undefined"`;
66

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`pipeline-operator 1`] = `"Unexpected token >"`;
3+
exports[`pipeline-operator 1`] = `"Unexpected token '>'"`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`private-methods 1`] = `"Unexpected token ;"`;
3+
exports[`private-methods 1`] = `"Unexpected token ';'"`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`throw-expressions 1`] = `"Unexpected token )"`;
3+
exports[`throw-expressions 1`] = `"Unexpected token ')'"`;
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

3-
exports[`v8intrinsic 1`] = `"Unexpected token %"`;
3+
exports[`v8intrinsic 1`] = `"Unexpected token '%'"`;
44

5-
exports[`v8intrinsic 2`] = `"Unexpected token %"`;
5+
exports[`v8intrinsic 2`] = `"Unexpected token '%'"`;

0 commit comments

Comments
 (0)