Skip to content

Commit d9ad5c1

Browse files
committed
Merge branch 'master' into refactor/lint-to-ts
2 parents a1e37a0 + 4889cee commit d9ad5c1

22 files changed

+538
-581
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ package-lock.json
1010
lib/
1111
package.json.lerna_backup
1212
/*.iml
13-
tsconfig.tsbuildinfo
13+
tsconfig.tsbuildinfo

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "node",
9+
"request": "launch",
10+
"name": "Jest Test Current file",
11+
"program": "${workspaceFolder}/node_modules/jest/bin/jest.js",
12+
"cwd": "${workspaceFolder}",
13+
"args": [
14+
"--runInBand",
15+
"--no-cache",
16+
"--no-coverage",
17+
"${fileBasename}"
18+
],
19+
"sourceMaps": true,
20+
"console": "integratedTerminal",
21+
"internalConsoleOptions": "neverOpen"
22+
}
23+
]
24+
}

@commitlint/cli/package.json

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,9 @@
1414
"build": "cross-env NODE_ENV=production babel src --out-dir lib --source-maps",
1515
"deps": "dep-check",
1616
"pkg": "pkg-check",
17-
"start": "concurrently \"ava -c 4 --verbose --watch\" \"yarn run watch\"",
18-
"test": "ava -c 4 --verbose",
17+
"start": "yarn run watch",
1918
"watch": "babel src --out-dir lib --watch --source-maps"
2019
},
21-
"ava": {
22-
"files": [
23-
"lib/**/*.test.js"
24-
],
25-
"source": [
26-
"lib/**/*.js"
27-
]
28-
},
2920
"babel": {
3021
"presets": [
3122
"babel-preset-commitlint"
@@ -58,7 +49,6 @@
5849
"@babel/register": "^7.7.7",
5950
"@commitlint/test": "8.2.0",
6051
"@commitlint/utils": "^8.3.4",
61-
"ava": "2.4.0",
6252
"babel-preset-commitlint": "^8.2.0",
6353
"concurrently": "3.6.1",
6454
"cross-env": "6.0.3",
@@ -67,8 +57,7 @@
6757
"pkg-dir": "4.2.0",
6858
"resolve-bin": "0.4.0",
6959
"sander": "0.6.0",
70-
"string-to-stream": "3.0.1",
71-
"tmp": "0.1.0"
60+
"string-to-stream": "3.0.1"
7261
},
7362
"dependencies": {
7463
"@commitlint/format": "^8.3.4",

0 commit comments

Comments
 (0)