@virmator/core 13.13.5 → 13.14.1
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type Logger } from '@augment-vir/common';
|
|
2
2
|
import { type PackageJson } from 'type-fest';
|
|
3
|
-
import { PackageType } from '../plugin/plugin-env.js';
|
|
3
|
+
import { type PackageType } from '../plugin/plugin-env.js';
|
|
4
4
|
import { type UsedVirmatorPluginCommands } from '../plugin/plugin-executor.js';
|
|
5
5
|
import { type PluginNpmDeps } from '../plugin/plugin-init.js';
|
|
6
6
|
/** Install's a virmator plugin's listed npm deps depending on which command is being run. */
|
|
@@ -3,7 +3,7 @@ import type { runShellCommand } from '@augment-vir/node';
|
|
|
3
3
|
import { type ChalkInstance } from 'chalk';
|
|
4
4
|
import { type EmptyObject, type PackageJson, type SetRequired } from 'type-fest';
|
|
5
5
|
import { type VirmatorPluginResolvedConfigFile } from './plugin-configs.js';
|
|
6
|
-
import { PackageType } from './plugin-env.js';
|
|
6
|
+
import { type PackageType } from './plugin-env.js';
|
|
7
7
|
import { type IndividualPluginCommand, type PluginNpmDeps, type VirmatorPluginCliCommands, type VirmatorPluginInit } from './plugin-init.js';
|
|
8
8
|
/** A picked nesting of commands based on which commands are currently in use. */
|
|
9
9
|
export type UsedVirmatorPluginCommands<Commands extends VirmatorPluginCliCommands = VirmatorPluginCliCommands> = Partial<Readonly<{
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type RuntimeEnv } from '@augment-vir/common';
|
|
2
2
|
import { type VirmatorPluginConfigFile } from './plugin-configs.js';
|
|
3
|
-
import { PackageType } from './plugin-env.js';
|
|
3
|
+
import { type PackageType } from './plugin-env.js';
|
|
4
4
|
/** A single doc entry for {@link PluginCommandDocs}. */
|
|
5
5
|
export type PluginDocEntry = Readonly<{
|
|
6
6
|
title?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@virmator/core",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.14.1",
|
|
4
4
|
"description": "Shared core functionality for all virmator plugins and the virmator CLI.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"automation",
|
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"name": "electrovir",
|
|
21
21
|
"url": "https://github.com/electrovir"
|
|
22
22
|
},
|
|
23
|
+
"sideEffects": false,
|
|
23
24
|
"type": "module",
|
|
24
25
|
"main": "dist/index.js",
|
|
25
26
|
"module": "dist/index.js",
|
|
@@ -31,21 +32,21 @@
|
|
|
31
32
|
"test:update": "npm test update"
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
|
34
|
-
"@augment-vir/assert": "^31.
|
|
35
|
-
"@augment-vir/common": "^31.
|
|
36
|
-
"@augment-vir/node": "^31.
|
|
35
|
+
"@augment-vir/assert": "^31.14.1",
|
|
36
|
+
"@augment-vir/common": "^31.14.1",
|
|
37
|
+
"@augment-vir/node": "^31.14.1",
|
|
37
38
|
"chalk": "^5.4.1",
|
|
38
39
|
"concurrently": "^9.1.2",
|
|
39
|
-
"mono-vir": "^2.0.
|
|
40
|
+
"mono-vir": "^2.0.6",
|
|
40
41
|
"semver": "^7.7.1",
|
|
41
|
-
"type-fest": "^4.
|
|
42
|
-
"typescript": "^5.8.
|
|
42
|
+
"type-fest": "^4.40.0",
|
|
43
|
+
"typescript": "^5.8.3"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
|
-
"@augment-vir/test": "^31.
|
|
46
|
-
"@types/node": "^22.
|
|
47
|
-
"@types/semver": "^7.
|
|
48
|
-
"esbuild": "^0.25.
|
|
46
|
+
"@augment-vir/test": "^31.14.1",
|
|
47
|
+
"@types/node": "^22.15.0",
|
|
48
|
+
"@types/semver": "^7.7.0",
|
|
49
|
+
"esbuild": "^0.25.3"
|
|
49
50
|
},
|
|
50
51
|
"engines": {
|
|
51
52
|
"node": ">=22"
|