Skip to content

Commit 3b43046

Browse files
committed
[patch] update deps and configs
1 parent 36a65c3 commit 3b43046

13 files changed

+1033
-803
lines changed

.github/workflows/tagged-release.yml

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ on:
88
jobs:
99
tagged-release:
1010
name: 'Tagged Release'
11-
if: github.event.base_ref == 'refs/heads/main' || github.event.base_ref == 'refs/heads/master'
1211
runs-on: 'ubuntu-latest'
1312

1413
steps:

.gitignore

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
*.tgz
22
.DS_Store
3+
.not-committed/
34
/Icon?
45
coverage/
6+
dist-*/
57
dist/
8+
generated-config-*
69
graphics/
710
node_modules/
8-
src/all-files-for-code-coverage.test.ts
11+
src/all-files-for-code-coverage.test.ts
12+
ts.out
13+
tsconfig.tsbuildinfo

.npmignore

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
**/*/readme-examples/
22
**/*/test/
3+
*.book-helper.*
4+
*.book.*
35
*.d.ts.map
46
*.test-helper.*
57
*.test.*
68
*.tgz
79
.*
10+
.not-committed/
811
/Icon?
912
/configs/
1013
/coverage/
1114
/cspell.config.js
1215
/graphics/
13-
/public/
1416
/src/
17+
/www-static/
1518
bash-scripts/
19+
dist-docs/
20+
generated-config-*
1621
index.html
1722
test-files/
18-
tsconfig*.json
23+
ts.out/
24+
tsconfig*.json
25+
tsconfig.tsbuildinfo

.prettierignore

+11-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
/Icon?
2-
coverage/
3-
dist/
4-
graphics/
5-
node_modules/
6-
package-lock.json
7-
src/all-files-for-code-coverage.test.ts
1+
**/all-files-for-code-coverage.test.ts
2+
**/coverage/
3+
**/dist-*/
4+
**/dist/
5+
**/generated-config-*
6+
**/graphics/
7+
**/node_modules/
8+
**/package-lock.json
9+
**/ts.out/
10+
**/tsconfig.tsbuildinfo
11+
/Icon?

.vscode/settings.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
"editor.defaultFormatter": "esbenp.prettier-vscode"
4040
},
4141
"editor.formatOnSave": true,
42-
"editor.rulers": [100],
42+
"editor.rulers": [
43+
100
44+
],
4345
"editor.wordWrapColumn": 100,
4446
"files.associations": {
4547
"*.svg": "html"

configs/dep-cruiser.config.ts

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ const baseConfig = generateDepCruiserConfig({
77
'no-orphans': {
88
from: [
99
'src/index.ts',
10+
'src/readme-examples',
11+
],
12+
},
13+
'not-to-unresolvable': {
14+
to: [
15+
'prettier/parser-typescript',
1016
],
1117
},
1218
},

configs/ncu.config.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import {RunOptions} from 'npm-check-updates';
2+
import {baseNcuConfig} from 'virmator/dist/compiled-base-configs/base-ncu';
23

34
export const ncuConfig: RunOptions = {
4-
color: true,
5-
upgrade: true,
6-
root: true,
5+
...baseNcuConfig,
76
// exclude these
8-
reject: [],
7+
reject: [
8+
...baseNcuConfig.reject,
9+
],
910
// include only these
1011
filter: [],
1112
};

cspell.config.js

-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,5 @@ module.exports = {
99
'Robinfr',
1010
'espree',
1111
'meriyah',
12-
'nodenext',
1312
],
1413
};

0 commit comments

Comments
 (0)