Skip to content

Commit

Permalink
[patch] update deps and configs
Browse files Browse the repository at this point in the history
  • Loading branch information
electrovir committed Nov 20, 2023
1 parent 36a65c3 commit 3b43046
Show file tree
Hide file tree
Showing 13 changed files with 1,033 additions and 803 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tagged-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
jobs:
tagged-release:
name: 'Tagged Release'
if: github.event.base_ref == 'refs/heads/main' || github.event.base_ref == 'refs/heads/master'
runs-on: 'ubuntu-latest'

steps:
Expand Down
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
*.tgz
.DS_Store
.not-committed/
/Icon?
coverage/
dist-*/
dist/
generated-config-*
graphics/
node_modules/
src/all-files-for-code-coverage.test.ts
src/all-files-for-code-coverage.test.ts
ts.out
tsconfig.tsbuildinfo
11 changes: 9 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
**/*/readme-examples/
**/*/test/
*.book-helper.*
*.book.*
*.d.ts.map
*.test-helper.*
*.test.*
*.tgz
.*
.not-committed/
/Icon?
/configs/
/coverage/
/cspell.config.js
/graphics/
/public/
/src/
/www-static/
bash-scripts/
dist-docs/
generated-config-*
index.html
test-files/
tsconfig*.json
ts.out/
tsconfig*.json
tsconfig.tsbuildinfo
18 changes: 11 additions & 7 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
/Icon?
coverage/
dist/
graphics/
node_modules/
package-lock.json
src/all-files-for-code-coverage.test.ts
**/all-files-for-code-coverage.test.ts
**/coverage/
**/dist-*/
**/dist/
**/generated-config-*
**/graphics/
**/node_modules/
**/package-lock.json
**/ts.out/
**/tsconfig.tsbuildinfo
/Icon?
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"editor.formatOnSave": true,
"editor.rulers": [100],
"editor.rulers": [
100
],
"editor.wordWrapColumn": 100,
"files.associations": {
"*.svg": "html"
Expand Down
6 changes: 6 additions & 0 deletions configs/dep-cruiser.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ const baseConfig = generateDepCruiserConfig({
'no-orphans': {
from: [
'src/index.ts',
'src/readme-examples',
],
},
'not-to-unresolvable': {
to: [
'prettier/parser-typescript',
],
},
},
Expand Down
9 changes: 5 additions & 4 deletions configs/ncu.config.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import {RunOptions} from 'npm-check-updates';
import {baseNcuConfig} from 'virmator/dist/compiled-base-configs/base-ncu';

export const ncuConfig: RunOptions = {
color: true,
upgrade: true,
root: true,
...baseNcuConfig,
// exclude these
reject: [],
reject: [
...baseNcuConfig.reject,
],
// include only these
filter: [],
};
1 change: 0 additions & 1 deletion cspell.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@ module.exports = {
'Robinfr',
'espree',
'meriyah',
'nodenext',
],
};
Loading

0 comments on commit 3b43046

Please sign in to comment.