Skip to content

Commit 936f085

Browse files
committed
Chore: Add tooling and build features
1 parent 3907b98 commit 936f085

File tree

5 files changed

+13826
-0
lines changed

5 files changed

+13826
-0
lines changed

.sgcrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
3+
}

.vscode/launch.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
{
3+
"version": "0.2.0",
4+
"configurations": [
5+
{
6+
"type": "node",
7+
"request": "launch",
8+
"name": "Mocha All",
9+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
10+
"args": [
11+
"--timeout",
12+
"999999",
13+
"--colors",
14+
"'${workspaceFolder}/{,!(node_modules)/}*/*.test.js'"
15+
],
16+
"console": "integratedTerminal",
17+
"internalConsoleOptions": "neverOpen"
18+
},
19+
{
20+
"type": "node",
21+
"request": "launch",
22+
"name": "Mocha Current File",
23+
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
24+
"args": [
25+
"--timeout",
26+
"999999",
27+
"--colors",
28+
"${file}"
29+
],
30+
"console": "integratedTerminal",
31+
"internalConsoleOptions": "neverOpen"
32+
}
33+
]
34+
}

config/release.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
analyzeCommits: {
3+
preset: 'eslint'
4+
},
5+
generateNotes: {
6+
preset: 'eslint'
7+
}
8+
}

0 commit comments

Comments
 (0)