@alexaegis/autotool-plugin-vitest 0.5.6 → 0.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs +13 -13
- package/index.js +14 -14
- package/package.json +11 -11
package/index.cjs
CHANGED
|
@@ -5,7 +5,7 @@ require("autotool-plugin");
|
|
|
5
5
|
const node_path = require("node:path");
|
|
6
6
|
const name = "@alexaegis/autotool-plugin-vitest";
|
|
7
7
|
const description = "Setup vitest";
|
|
8
|
-
const version = "0.5.
|
|
8
|
+
const version = "0.5.9";
|
|
9
9
|
const license = "MIT";
|
|
10
10
|
const archetype = {
|
|
11
11
|
platform: "node",
|
|
@@ -35,9 +35,9 @@ const scripts = {
|
|
|
35
35
|
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
|
|
36
36
|
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
37
37
|
"lint:tsc_": "tsc --noEmit",
|
|
38
|
-
publint: "turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
38
|
+
publint: "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
39
39
|
publint_: "publint dist",
|
|
40
|
-
all: "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
40
|
+
all: "BUILD_REASON='publish' turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
41
41
|
format: "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
42
42
|
format_: "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
|
|
43
43
|
test: "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
@@ -57,22 +57,22 @@ const exports$1 = {
|
|
|
57
57
|
"./readme": "./readme.md"
|
|
58
58
|
};
|
|
59
59
|
const dependencies = {
|
|
60
|
-
"@alexaegis/coverage-tools": "^0.
|
|
61
|
-
"@alexaegis/logging": "^0.
|
|
62
|
-
"@alexaegis/predicate": "^0.
|
|
60
|
+
"@alexaegis/coverage-tools": "^0.5.0",
|
|
61
|
+
"@alexaegis/logging": "^0.5.0",
|
|
62
|
+
"@alexaegis/predicate": "^0.5.0",
|
|
63
63
|
"autotool-plugin": "^0.2.3"
|
|
64
64
|
};
|
|
65
65
|
const devDependencies = {
|
|
66
|
-
"@alexaegis/eslint-config-vitest": "^0.5.
|
|
67
|
-
"@alexaegis/ts": "^0.5.
|
|
68
|
-
"@alexaegis/vite": "^0.5.
|
|
69
|
-
"@alexaegis/vitest": "^0.5.
|
|
66
|
+
"@alexaegis/eslint-config-vitest": "^0.5.9",
|
|
67
|
+
"@alexaegis/ts": "^0.5.9",
|
|
68
|
+
"@alexaegis/vite": "^0.5.9",
|
|
69
|
+
"@alexaegis/vitest": "^0.5.9",
|
|
70
70
|
"@lcov-viewer/cli": "^1.3.0",
|
|
71
71
|
"@types/node": "^20.4.2",
|
|
72
72
|
"@vitest/coverage-v8": "^0.33.0",
|
|
73
73
|
publint: "^0.1.16",
|
|
74
74
|
typescript: "^5.1.6",
|
|
75
|
-
vite: "^4.4.
|
|
75
|
+
vite: "^4.4.6",
|
|
76
76
|
vitest: "^0.33.0"
|
|
77
77
|
};
|
|
78
78
|
const packageJson = {
|
|
@@ -152,7 +152,7 @@ const plugin = (_options) => {
|
|
|
152
152
|
archetype: {
|
|
153
153
|
kind: appOrLib,
|
|
154
154
|
platform: "web",
|
|
155
|
-
framework: predicate.not(predicate.
|
|
155
|
+
framework: predicate.not(predicate.contains("svelte"))
|
|
156
156
|
}
|
|
157
157
|
},
|
|
158
158
|
packageKind: "regular",
|
|
@@ -168,7 +168,7 @@ const plugin = (_options) => {
|
|
|
168
168
|
archetype: {
|
|
169
169
|
kind: appOrLib,
|
|
170
170
|
platform: "node",
|
|
171
|
-
framework: predicate.not(predicate.
|
|
171
|
+
framework: predicate.not(predicate.contains("svelte"))
|
|
172
172
|
}
|
|
173
173
|
},
|
|
174
174
|
packageKind: "regular",
|
package/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { or, equal, not } from "@alexaegis/predicate";
|
|
1
|
+
import { or, equal, not, contains } from "@alexaegis/predicate";
|
|
2
2
|
import "autotool-plugin";
|
|
3
3
|
import { join } from "node:path";
|
|
4
4
|
const name = "@alexaegis/autotool-plugin-vitest";
|
|
5
5
|
const description = "Setup vitest";
|
|
6
|
-
const version = "0.5.
|
|
6
|
+
const version = "0.5.9";
|
|
7
7
|
const license = "MIT";
|
|
8
8
|
const archetype = {
|
|
9
9
|
platform: "node",
|
|
@@ -33,9 +33,9 @@ const scripts = {
|
|
|
33
33
|
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
|
|
34
34
|
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
35
35
|
"lint:tsc_": "tsc --noEmit",
|
|
36
|
-
publint: "turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
36
|
+
publint: "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
37
37
|
publint_: "publint dist",
|
|
38
|
-
all: "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
38
|
+
all: "BUILD_REASON='publish' turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
39
39
|
format: "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
40
40
|
format_: "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
|
|
41
41
|
test: "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
@@ -55,22 +55,22 @@ const exports = {
|
|
|
55
55
|
"./readme": "./readme.md"
|
|
56
56
|
};
|
|
57
57
|
const dependencies = {
|
|
58
|
-
"@alexaegis/coverage-tools": "^0.
|
|
59
|
-
"@alexaegis/logging": "^0.
|
|
60
|
-
"@alexaegis/predicate": "^0.
|
|
58
|
+
"@alexaegis/coverage-tools": "^0.5.0",
|
|
59
|
+
"@alexaegis/logging": "^0.5.0",
|
|
60
|
+
"@alexaegis/predicate": "^0.5.0",
|
|
61
61
|
"autotool-plugin": "^0.2.3"
|
|
62
62
|
};
|
|
63
63
|
const devDependencies = {
|
|
64
|
-
"@alexaegis/eslint-config-vitest": "^0.5.
|
|
65
|
-
"@alexaegis/ts": "^0.5.
|
|
66
|
-
"@alexaegis/vite": "^0.5.
|
|
67
|
-
"@alexaegis/vitest": "^0.5.
|
|
64
|
+
"@alexaegis/eslint-config-vitest": "^0.5.9",
|
|
65
|
+
"@alexaegis/ts": "^0.5.9",
|
|
66
|
+
"@alexaegis/vite": "^0.5.9",
|
|
67
|
+
"@alexaegis/vitest": "^0.5.9",
|
|
68
68
|
"@lcov-viewer/cli": "^1.3.0",
|
|
69
69
|
"@types/node": "^20.4.2",
|
|
70
70
|
"@vitest/coverage-v8": "^0.33.0",
|
|
71
71
|
publint: "^0.1.16",
|
|
72
72
|
typescript: "^5.1.6",
|
|
73
|
-
vite: "^4.4.
|
|
73
|
+
vite: "^4.4.6",
|
|
74
74
|
vitest: "^0.33.0"
|
|
75
75
|
};
|
|
76
76
|
const packageJson = {
|
|
@@ -150,7 +150,7 @@ const plugin = (_options) => {
|
|
|
150
150
|
archetype: {
|
|
151
151
|
kind: appOrLib,
|
|
152
152
|
platform: "web",
|
|
153
|
-
framework: not(
|
|
153
|
+
framework: not(contains("svelte"))
|
|
154
154
|
}
|
|
155
155
|
},
|
|
156
156
|
packageKind: "regular",
|
|
@@ -166,7 +166,7 @@ const plugin = (_options) => {
|
|
|
166
166
|
archetype: {
|
|
167
167
|
kind: appOrLib,
|
|
168
168
|
platform: "node",
|
|
169
|
-
framework: not(
|
|
169
|
+
framework: not(contains("svelte"))
|
|
170
170
|
}
|
|
171
171
|
},
|
|
172
172
|
packageKind: "regular",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexaegis/autotool-plugin-vitest",
|
|
3
3
|
"description": "Setup vitest",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.9",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"archetype": {
|
|
@@ -54,22 +54,22 @@
|
|
|
54
54
|
"./readme": "./readme.md"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@alexaegis/coverage-tools": "^0.
|
|
58
|
-
"@alexaegis/logging": "^0.
|
|
59
|
-
"@alexaegis/predicate": "^0.
|
|
57
|
+
"@alexaegis/coverage-tools": "^0.5.0",
|
|
58
|
+
"@alexaegis/logging": "^0.5.0",
|
|
59
|
+
"@alexaegis/predicate": "^0.5.0",
|
|
60
60
|
"autotool-plugin": "^0.2.3"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
|
-
"@alexaegis/eslint-config-vitest": "^0.5.
|
|
64
|
-
"@alexaegis/ts": "^0.5.
|
|
65
|
-
"@alexaegis/vite": "^0.5.
|
|
66
|
-
"@alexaegis/vitest": "^0.5.
|
|
63
|
+
"@alexaegis/eslint-config-vitest": "^0.5.9",
|
|
64
|
+
"@alexaegis/ts": "^0.5.9",
|
|
65
|
+
"@alexaegis/vite": "^0.5.9",
|
|
66
|
+
"@alexaegis/vitest": "^0.5.9",
|
|
67
67
|
"@lcov-viewer/cli": "^1.3.0",
|
|
68
68
|
"@types/node": "^20.4.2",
|
|
69
69
|
"@vitest/coverage-v8": "^0.33.0",
|
|
70
70
|
"publint": "^0.1.16",
|
|
71
71
|
"typescript": "^5.1.6",
|
|
72
|
-
"vite": "^4.4.
|
|
72
|
+
"vite": "^4.4.6",
|
|
73
73
|
"vitest": "^0.33.0"
|
|
74
74
|
},
|
|
75
75
|
"scripts": {
|
|
@@ -85,9 +85,9 @@
|
|
|
85
85
|
"lint:md_": "remark --frail --no-stdout --silently-ignore .",
|
|
86
86
|
"lint:tsc": "turbo run lint:tsc_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
87
87
|
"lint:tsc_": "tsc --noEmit",
|
|
88
|
-
"publint": "turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
88
|
+
"publint": "BUILD_REASON='publish' turbo run publint_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
89
89
|
"publint_": "publint dist",
|
|
90
|
-
"all": "turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
90
|
+
"all": "BUILD_REASON='publish' turbo run all_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
91
91
|
"format": "turbo run format_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|
|
92
92
|
"format_": "prettier --cache-location .cache/prettier --plugin prettier-plugin-svelte --plugin prettier-plugin-tailwindcss --write .",
|
|
93
93
|
"test": "turbo run test_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/autotool-plugin-vitest",
|