@vantail/cli 0.1.3 → 0.1.4
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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export { packageApp, type PackageOptions } from "./commands/package.js";
|
|
|
13
13
|
export { bundle, type BundleInput, type BundleResult } from "./bundle/index.js";
|
|
14
14
|
export { buildRuntimeConfig, type RuntimeConfigInput } from "./runtime-config.js";
|
|
15
15
|
/** Kept in step with package.json by the release script. */
|
|
16
|
-
export declare const VERSION = "0.1.
|
|
16
|
+
export declare const VERSION = "0.1.4";
|
|
17
17
|
/** `ConfigError` is thrown from a package the CLI does not re-export. */
|
|
18
18
|
export declare const ConfigErrorName = "ConfigError";
|
|
19
19
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ export { packageApp } from "./commands/package.js";
|
|
|
12
12
|
export { bundle } from "./bundle/index.js";
|
|
13
13
|
export { buildRuntimeConfig } from "./runtime-config.js";
|
|
14
14
|
/** Kept in step with package.json by the release script. */
|
|
15
|
-
export const VERSION = "0.1.
|
|
15
|
+
export const VERSION = "0.1.4";
|
|
16
16
|
/** `ConfigError` is thrown from a package the CLI does not re-export. */
|
|
17
17
|
export const ConfigErrorName = "ConfigError";
|
|
18
18
|
//# sourceMappingURL=index.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vantail/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "The Vantail command line: dev, build, package.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@vantail/runtime": "^0.1.
|
|
31
|
-
"@vantail/shared": "^0.1.
|
|
32
|
-
"@vantail/vite": "^0.1.
|
|
30
|
+
"@vantail/runtime": "^0.1.4",
|
|
31
|
+
"@vantail/shared": "^0.1.4",
|
|
32
|
+
"@vantail/vite": "^0.1.4"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"vite": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
|