Skip to content

Commit

Permalink
[patch] ignore snapshot files
Browse files Browse the repository at this point in the history
  • Loading branch information
electrovir committed Dec 11, 2024
1 parent fc700d4 commit 137c07d
Show file tree
Hide file tree
Showing 24 changed files with 106 additions and 99 deletions.
88 changes: 44 additions & 44 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/mono-repo-root",
"version": "13.10.6",
"version": "13.10.7",
"private": true,
"type": "module",
"workspaces": [
Expand Down
6 changes: 3 additions & 3 deletions packages/compile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/compile",
"version": "13.10.6",
"version": "13.10.7",
"description": "Default TS compile plugin for virmator.",
"keywords": [
"virmator",
Expand Down Expand Up @@ -34,12 +34,12 @@
"@augment-vir/assert": "^31.0.1",
"@augment-vir/common": "^31.0.1",
"@augment-vir/node": "^31.0.1",
"@virmator/core": "^13.10.6"
"@virmator/core": "^13.10.7"
},
"devDependencies": {
"@augment-vir/test": "^31.0.1",
"@types/node": "^22.10.1",
"@virmator/plugin-testing": "^13.10.6",
"@virmator/plugin-testing": "^13.10.7",
"c8": "^10.1.2",
"chalk": "^5.3.0",
"concurrently": "^9.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/core",
"version": "13.10.6",
"version": "13.10.7",
"description": "Shared core functionality for all virmator plugins and the virmator CLI.",
"keywords": [
"automation",
Expand Down
4 changes: 3 additions & 1 deletion packages/deps/configs/dep-cruiser.config.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ export function defineConfig({
from: {
orphan: true,
pathNot: [
'\\.d\\.ts$', // TypeScript declaration files
'\\.d\\.ts$',
'\\.test\\.ts$',
'\\.snapshot\\.web\\.mjs$',
'\\.snapshot$',
],
},
to: {},
Expand Down
4 changes: 2 additions & 2 deletions packages/deps/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/deps",
"version": "13.10.6",
"version": "13.10.7",
"description": "Default TS deps plugin for virmator.",
"keywords": [
"virmator",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@augment-vir/assert": "^31.0.1",
"@augment-vir/common": "^31.0.1",
"@augment-vir/node": "^31.0.1",
"@virmator/core": "^13.10.6",
"@virmator/core": "^13.10.7",
"mri": "^1.2.0"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/docs",
"version": "13.10.6",
"version": "13.10.7",
"description": "Default TS docs plugin for virmator.",
"keywords": [
"virmator",
Expand Down Expand Up @@ -35,7 +35,7 @@
"@augment-vir/assert": "^31.0.1",
"@augment-vir/common": "^31.0.1",
"@augment-vir/node": "^31.0.1",
"@virmator/core": "^13.10.6",
"@virmator/core": "^13.10.7",
"chalk": "^5.3.0",
"mri": "^1.2.0"
},
Expand Down
1 change: 1 addition & 0 deletions packages/format/configs/prettierignore.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
*.snapshot.web.mjs
**/all-files-for-code-coverage.test.ts
**/coverage/
**/dist-*/
Expand Down
4 changes: 2 additions & 2 deletions packages/format/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@virmator/format",
"version": "13.10.6",
"version": "13.10.7",
"description": "Default format plugin for virmator.",
"keywords": [
"virmator",
Expand Down Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@augment-vir/assert": "^31.0.1",
"@augment-vir/common": "^31.0.1",
"@virmator/core": "^13.10.6",
"@virmator/core": "^13.10.7",
"mri": "^1.2.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 137c07d

Please sign in to comment.