@alexaegis/autotool-plugin-vitest 0.5.5 → 0.5.7

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.
Files changed (3) hide show
  1. package/index.cjs +11 -11
  2. package/index.js +12 -12
  3. package/package.json +9 -9
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.5";
8
+ const version = "0.5.7";
9
9
  const license = "MIT";
10
10
  const archetype = {
11
11
  platform: "node",
@@ -57,22 +57,22 @@ const exports$1 = {
57
57
  "./readme": "./readme.md"
58
58
  };
59
59
  const dependencies = {
60
- "@alexaegis/coverage-tools": "^0.4.5",
61
- "@alexaegis/logging": "^0.4.5",
62
- "@alexaegis/predicate": "^0.4.5",
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.5",
67
- "@alexaegis/ts": "^0.5.5",
68
- "@alexaegis/vite": "^0.5.5",
69
- "@alexaegis/vitest": "^0.5.5",
66
+ "@alexaegis/eslint-config-vitest": "^0.5.7",
67
+ "@alexaegis/ts": "^0.5.7",
68
+ "@alexaegis/vite": "^0.5.7",
69
+ "@alexaegis/vitest": "^0.5.7",
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.4",
75
+ vite: "^4.4.5",
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.equal("svelte"))
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.equal("svelte"))
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.5";
6
+ const version = "0.5.7";
7
7
  const license = "MIT";
8
8
  const archetype = {
9
9
  platform: "node",
@@ -55,22 +55,22 @@ const exports = {
55
55
  "./readme": "./readme.md"
56
56
  };
57
57
  const dependencies = {
58
- "@alexaegis/coverage-tools": "^0.4.5",
59
- "@alexaegis/logging": "^0.4.5",
60
- "@alexaegis/predicate": "^0.4.5",
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.5",
65
- "@alexaegis/ts": "^0.5.5",
66
- "@alexaegis/vite": "^0.5.5",
67
- "@alexaegis/vitest": "^0.5.5",
64
+ "@alexaegis/eslint-config-vitest": "^0.5.7",
65
+ "@alexaegis/ts": "^0.5.7",
66
+ "@alexaegis/vite": "^0.5.7",
67
+ "@alexaegis/vitest": "^0.5.7",
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.4",
73
+ vite: "^4.4.5",
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(equal("svelte"))
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(equal("svelte"))
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.5",
4
+ "version": "0.5.7",
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.4.5",
58
- "@alexaegis/logging": "^0.4.5",
59
- "@alexaegis/predicate": "^0.4.5",
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.5",
64
- "@alexaegis/ts": "^0.5.5",
65
- "@alexaegis/vite": "^0.5.5",
66
- "@alexaegis/vitest": "^0.5.5",
63
+ "@alexaegis/eslint-config-vitest": "^0.5.7",
64
+ "@alexaegis/ts": "^0.5.7",
65
+ "@alexaegis/vite": "^0.5.7",
66
+ "@alexaegis/vitest": "^0.5.7",
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.4",
72
+ "vite": "^4.4.5",
73
73
  "vitest": "^0.33.0"
74
74
  },
75
75
  "scripts": {