powerlines 0.42.0 → 0.42.2
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/{api-Cq6oqcq8.mjs → api-CDr8k5H4.mjs} +12 -3
- package/dist/{api-Cq6oqcq8.mjs.map → api-CDr8k5H4.mjs.map} +1 -1
- package/dist/{api-BGV1CwNT.cjs → api-CtLMQnQ_.cjs} +11 -2
- package/dist/astro.cjs +1 -1
- package/dist/astro.mjs +1 -1
- package/dist/context/index.cjs +1 -1
- package/dist/context/index.mjs +1 -1
- package/dist/esbuild.cjs +1 -1
- package/dist/esbuild.mjs +1 -1
- package/dist/farm.cjs +1 -1
- package/dist/farm.mjs +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +8 -7
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +8 -7
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/next.cjs +1 -1
- package/dist/next.mjs +1 -1
- package/dist/nuxt.cjs +1 -1
- package/dist/nuxt.mjs +1 -1
- package/dist/rolldown.cjs +1 -1
- package/dist/rolldown.mjs +1 -1
- package/dist/rollup.cjs +1 -1
- package/dist/rollup.mjs +1 -1
- package/dist/rspack.cjs +1 -1
- package/dist/rspack.mjs +1 -1
- package/dist/tsdown.cjs +1 -1
- package/dist/tsdown.mjs +1 -1
- package/dist/tsup.cjs +1 -1
- package/dist/tsup.mjs +1 -1
- package/dist/unloader.cjs +1 -1
- package/dist/unloader.mjs +1 -1
- package/dist/unplugin.cjs +1 -1
- package/dist/unplugin.mjs +1 -1
- package/dist/vite.cjs +1 -1
- package/dist/vite.mjs +1 -1
- package/dist/webpack.cjs +1 -1
- package/dist/webpack.mjs +1 -1
- package/package.json +12 -12
|
@@ -76,7 +76,7 @@ let unplugin = require("unplugin");
|
|
|
76
76
|
|
|
77
77
|
//#region package.json
|
|
78
78
|
var name = "powerlines";
|
|
79
|
-
var version = "0.42.
|
|
79
|
+
var version = "0.42.2";
|
|
80
80
|
|
|
81
81
|
//#endregion
|
|
82
82
|
//#region src/_internal/helpers/generate-types.ts
|
|
@@ -3239,9 +3239,10 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3239
3239
|
*
|
|
3240
3240
|
* @param inlineConfig - The inline configuration for the typegen command
|
|
3241
3241
|
*/
|
|
3242
|
-
async typegen(inlineConfig = { command: "
|
|
3242
|
+
async typegen(inlineConfig = { command: "typegen" }) {
|
|
3243
3243
|
this.context.info(" 🏗️ Generating typescript declarations for the Powerlines project");
|
|
3244
3244
|
this.context.debug(" Aggregating configuration options for the Powerlines project");
|
|
3245
|
+
inlineConfig.command ??= "typegen";
|
|
3245
3246
|
await this.context.withInlineConfig(inlineConfig);
|
|
3246
3247
|
await this.#executeEnvironments(async (context) => {
|
|
3247
3248
|
context.debug(`Initializing the processing options for the Powerlines project.`);
|
|
@@ -3289,6 +3290,7 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3289
3290
|
async prepare(inlineConfig = { command: "prepare" }) {
|
|
3290
3291
|
this.context.info(" 🏗️ Preparing the Powerlines project");
|
|
3291
3292
|
this.context.debug(" Aggregating configuration options for the Powerlines project");
|
|
3293
|
+
inlineConfig.command ??= "prepare";
|
|
3292
3294
|
await this.context.withInlineConfig(inlineConfig);
|
|
3293
3295
|
await this.#executeEnvironments(async (context) => {
|
|
3294
3296
|
context.debug(`Initializing the processing options for the Powerlines project.`);
|
|
@@ -3348,6 +3350,7 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3348
3350
|
*/
|
|
3349
3351
|
async new(inlineConfig) {
|
|
3350
3352
|
this.context.info(" 🆕 Creating a new Powerlines project");
|
|
3353
|
+
inlineConfig.command ??= "new";
|
|
3351
3354
|
await this.prepare(inlineConfig);
|
|
3352
3355
|
await this.#executeEnvironments(async (context) => {
|
|
3353
3356
|
context.debug("Initializing the processing options for the Powerlines project.");
|
|
@@ -3398,6 +3401,7 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3398
3401
|
*/
|
|
3399
3402
|
async clean(inlineConfig = { command: "clean" }) {
|
|
3400
3403
|
this.context.info(" 🧹 Cleaning the previous Powerlines artifacts");
|
|
3404
|
+
inlineConfig.command ??= "clean";
|
|
3401
3405
|
await this.prepare(inlineConfig);
|
|
3402
3406
|
await this.#executeEnvironments(async (context) => {
|
|
3403
3407
|
context.debug("Cleaning the project's dist and artifacts directories.");
|
|
@@ -3418,6 +3422,7 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3418
3422
|
*/
|
|
3419
3423
|
async lint(inlineConfig = { command: "lint" }) {
|
|
3420
3424
|
this.context.info(" 📝 Linting the Powerlines project");
|
|
3425
|
+
inlineConfig.command ??= "lint";
|
|
3421
3426
|
await this.prepare(inlineConfig);
|
|
3422
3427
|
await this.#executeEnvironments(async (context) => {
|
|
3423
3428
|
await this.callHook("lint", {
|
|
@@ -3441,6 +3446,7 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3441
3446
|
await this.context.generateChecksum();
|
|
3442
3447
|
if (this.context.meta.checksum !== this.context.persistedMeta?.checksum || this.context.config.skipCache) {
|
|
3443
3448
|
this.context.info("The project has been modified since the last time `prepare` was ran. Re-preparing the project.");
|
|
3449
|
+
inlineConfig.command ??= "build";
|
|
3444
3450
|
await this.prepare(inlineConfig);
|
|
3445
3451
|
}
|
|
3446
3452
|
if (this.context.config.singleBuild) await this.#handleBuild(await this.#context.toEnvironment());
|
|
@@ -3457,9 +3463,11 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3457
3463
|
*/
|
|
3458
3464
|
async docs(inlineConfig = { command: "docs" }) {
|
|
3459
3465
|
this.context.info(" 📓 Generating documentation for the Powerlines project");
|
|
3466
|
+
inlineConfig.command ??= "docs";
|
|
3460
3467
|
await this.prepare(inlineConfig);
|
|
3461
3468
|
await this.#executeEnvironments(async (context) => {
|
|
3462
3469
|
context.debug("Writing documentation for the Powerlines project artifacts.");
|
|
3470
|
+
inlineConfig.command ??= "docs";
|
|
3463
3471
|
await this.prepare(inlineConfig);
|
|
3464
3472
|
await this.#executeEnvironments(async (context) => {
|
|
3465
3473
|
await this.callHook("docs", { environment: context });
|
|
@@ -3477,6 +3485,7 @@ var PowerlinesAPI = class PowerlinesAPI {
|
|
|
3477
3485
|
*/
|
|
3478
3486
|
async deploy(inlineConfig = { command: "deploy" }) {
|
|
3479
3487
|
this.context.info(" 🚀 Deploying the Powerlines project");
|
|
3488
|
+
inlineConfig.command ??= "deploy";
|
|
3480
3489
|
await this.prepare(inlineConfig);
|
|
3481
3490
|
await this.#executeEnvironments(async (context) => {
|
|
3482
3491
|
await this.callHook("deploy", { environment: context });
|
package/dist/astro.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
|
-
require('./api-
|
|
2
|
+
require('./api-CtLMQnQ_.cjs');
|
|
3
3
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
4
4
|
require('./virtual-Cbvj12lU.cjs');
|
|
5
5
|
const require_vite = require('./vite.cjs');
|
package/dist/astro.mjs
CHANGED
package/dist/context/index.cjs
CHANGED
package/dist/context/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { i as createPluginContext, n as PowerlinesAPIContext, o as PowerlinesContext, r as PowerlinesEnvironmentContext } from "../api-
|
|
1
|
+
import { i as createPluginContext, n as PowerlinesAPIContext, o as PowerlinesContext, r as PowerlinesEnvironmentContext } from "../api-CDr8k5H4.mjs";
|
|
2
2
|
import "../tsconfig-D9GCB2I9.mjs";
|
|
3
3
|
import "../virtual-DvkJm7gK.mjs";
|
|
4
4
|
|
package/dist/esbuild.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let unplugin = require("unplugin");
|
package/dist/esbuild.mjs
CHANGED
package/dist/farm.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let unplugin = require("unplugin");
|
package/dist/farm.mjs
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let _stryke_fs_get_workspace_root = require("@stryke/fs/get-workspace-root");
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { n as __exportAll, r as __reExport, t as types_d_exports } from "./types-DerAvFjs.cjs";
|
|
2
2
|
import * as _powerlines_core0 from "@powerlines/core";
|
|
3
|
+
import { PartialKeys } from "@stryke/types/base";
|
|
3
4
|
import * as $ from "@stryke/capnp";
|
|
4
5
|
export * from "@powerlines/core";
|
|
5
6
|
|
|
@@ -40,7 +41,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
40
41
|
*
|
|
41
42
|
* @param inlineConfig - The inline configuration for the typegen command
|
|
42
43
|
*/
|
|
43
|
-
typegen(inlineConfig?: types_d_exports.
|
|
44
|
+
typegen(inlineConfig?: PartialKeys<types_d_exports.TypegenInlineConfig, "command">): Promise<void>;
|
|
44
45
|
/**
|
|
45
46
|
* Prepare the Powerlines API
|
|
46
47
|
*
|
|
@@ -49,7 +50,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
49
50
|
*
|
|
50
51
|
* @param inlineConfig - The inline configuration for the prepare command
|
|
51
52
|
*/
|
|
52
|
-
prepare(inlineConfig?: types_d_exports.PrepareInlineConfig | types_d_exports.NewInlineConfig | types_d_exports.CleanInlineConfig | types_d_exports.BuildInlineConfig | types_d_exports.LintInlineConfig | types_d_exports.DocsInlineConfig | types_d_exports.DeployInlineConfig): Promise<void>;
|
|
53
|
+
prepare(inlineConfig?: PartialKeys<types_d_exports.PrepareInlineConfig, "command"> | PartialKeys<types_d_exports.NewInlineConfig, "command"> | PartialKeys<types_d_exports.CleanInlineConfig, "command"> | PartialKeys<types_d_exports.BuildInlineConfig, "command"> | PartialKeys<types_d_exports.LintInlineConfig, "command"> | PartialKeys<types_d_exports.DocsInlineConfig, "command"> | PartialKeys<types_d_exports.DeployInlineConfig, "command">): Promise<void>;
|
|
53
54
|
/**
|
|
54
55
|
* Create a new Powerlines project
|
|
55
56
|
*
|
|
@@ -59,7 +60,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
59
60
|
* @param inlineConfig - The inline configuration for the new command
|
|
60
61
|
* @returns A promise that resolves when the project has been created
|
|
61
62
|
*/
|
|
62
|
-
new(inlineConfig: types_d_exports.NewInlineConfig): Promise<void>;
|
|
63
|
+
new(inlineConfig: PartialKeys<types_d_exports.NewInlineConfig, "command">): Promise<void>;
|
|
63
64
|
/**
|
|
64
65
|
* Clean any previously prepared artifacts
|
|
65
66
|
*
|
|
@@ -69,14 +70,14 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
69
70
|
* @param inlineConfig - The inline configuration for the clean command
|
|
70
71
|
* @returns A promise that resolves when the clean command has completed
|
|
71
72
|
*/
|
|
72
|
-
clean(inlineConfig?: types_d_exports.CleanInlineConfig | types_d_exports.PrepareInlineConfig): Promise<void>;
|
|
73
|
+
clean(inlineConfig?: PartialKeys<types_d_exports.CleanInlineConfig, "command"> | PartialKeys<types_d_exports.PrepareInlineConfig, "command">): Promise<void>;
|
|
73
74
|
/**
|
|
74
75
|
* Lint the project
|
|
75
76
|
*
|
|
76
77
|
* @param inlineConfig - The inline configuration for the lint command
|
|
77
78
|
* @returns A promise that resolves when the lint command has completed
|
|
78
79
|
*/
|
|
79
|
-
lint(inlineConfig?: types_d_exports.LintInlineConfig | types_d_exports.BuildInlineConfig): Promise<void>;
|
|
80
|
+
lint(inlineConfig?: PartialKeys<types_d_exports.LintInlineConfig, "command"> | PartialKeys<types_d_exports.BuildInlineConfig, "command">): Promise<void>;
|
|
80
81
|
/**
|
|
81
82
|
* Build the project
|
|
82
83
|
*
|
|
@@ -86,7 +87,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
86
87
|
* @param inlineConfig - The inline configuration for the build command
|
|
87
88
|
* @returns A promise that resolves when the build command has completed
|
|
88
89
|
*/
|
|
89
|
-
build(inlineConfig?: types_d_exports.BuildInlineConfig): Promise<void>;
|
|
90
|
+
build(inlineConfig?: PartialKeys<types_d_exports.BuildInlineConfig, "command">): Promise<void>;
|
|
90
91
|
/**
|
|
91
92
|
* Prepare the documentation for the project
|
|
92
93
|
*
|
|
@@ -102,7 +103,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
102
103
|
*
|
|
103
104
|
* @param inlineConfig - The inline configuration for the deploy command
|
|
104
105
|
*/
|
|
105
|
-
deploy(inlineConfig?: types_d_exports.DeployInlineConfig): Promise<void>;
|
|
106
|
+
deploy(inlineConfig?: PartialKeys<types_d_exports.DeployInlineConfig, "command">): Promise<void>;
|
|
106
107
|
/**
|
|
107
108
|
* Finalization process
|
|
108
109
|
*
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/api.ts","../schemas/fs.ts","../src/index.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/api.ts","../schemas/fs.ts","../src/index.ts"],"mappings":"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"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { t as types_d_exports } from "./types-ro7jWCtL.mjs";
|
|
2
2
|
import * as $ from "@stryke/capnp";
|
|
3
3
|
import * as _powerlines_core0 from "@powerlines/core";
|
|
4
|
+
import { PartialKeys } from "@stryke/types/base";
|
|
4
5
|
export * from "@powerlines/core";
|
|
5
6
|
|
|
6
7
|
//#region src/api.d.ts
|
|
@@ -40,7 +41,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
40
41
|
*
|
|
41
42
|
* @param inlineConfig - The inline configuration for the typegen command
|
|
42
43
|
*/
|
|
43
|
-
typegen(inlineConfig?: types_d_exports.
|
|
44
|
+
typegen(inlineConfig?: PartialKeys<types_d_exports.TypegenInlineConfig, "command">): Promise<void>;
|
|
44
45
|
/**
|
|
45
46
|
* Prepare the Powerlines API
|
|
46
47
|
*
|
|
@@ -49,7 +50,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
49
50
|
*
|
|
50
51
|
* @param inlineConfig - The inline configuration for the prepare command
|
|
51
52
|
*/
|
|
52
|
-
prepare(inlineConfig?: types_d_exports.PrepareInlineConfig | types_d_exports.NewInlineConfig | types_d_exports.CleanInlineConfig | types_d_exports.BuildInlineConfig | types_d_exports.LintInlineConfig | types_d_exports.DocsInlineConfig | types_d_exports.DeployInlineConfig): Promise<void>;
|
|
53
|
+
prepare(inlineConfig?: PartialKeys<types_d_exports.PrepareInlineConfig, "command"> | PartialKeys<types_d_exports.NewInlineConfig, "command"> | PartialKeys<types_d_exports.CleanInlineConfig, "command"> | PartialKeys<types_d_exports.BuildInlineConfig, "command"> | PartialKeys<types_d_exports.LintInlineConfig, "command"> | PartialKeys<types_d_exports.DocsInlineConfig, "command"> | PartialKeys<types_d_exports.DeployInlineConfig, "command">): Promise<void>;
|
|
53
54
|
/**
|
|
54
55
|
* Create a new Powerlines project
|
|
55
56
|
*
|
|
@@ -59,7 +60,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
59
60
|
* @param inlineConfig - The inline configuration for the new command
|
|
60
61
|
* @returns A promise that resolves when the project has been created
|
|
61
62
|
*/
|
|
62
|
-
new(inlineConfig: types_d_exports.NewInlineConfig): Promise<void>;
|
|
63
|
+
new(inlineConfig: PartialKeys<types_d_exports.NewInlineConfig, "command">): Promise<void>;
|
|
63
64
|
/**
|
|
64
65
|
* Clean any previously prepared artifacts
|
|
65
66
|
*
|
|
@@ -69,14 +70,14 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
69
70
|
* @param inlineConfig - The inline configuration for the clean command
|
|
70
71
|
* @returns A promise that resolves when the clean command has completed
|
|
71
72
|
*/
|
|
72
|
-
clean(inlineConfig?: types_d_exports.CleanInlineConfig | types_d_exports.PrepareInlineConfig): Promise<void>;
|
|
73
|
+
clean(inlineConfig?: PartialKeys<types_d_exports.CleanInlineConfig, "command"> | PartialKeys<types_d_exports.PrepareInlineConfig, "command">): Promise<void>;
|
|
73
74
|
/**
|
|
74
75
|
* Lint the project
|
|
75
76
|
*
|
|
76
77
|
* @param inlineConfig - The inline configuration for the lint command
|
|
77
78
|
* @returns A promise that resolves when the lint command has completed
|
|
78
79
|
*/
|
|
79
|
-
lint(inlineConfig?: types_d_exports.LintInlineConfig | types_d_exports.BuildInlineConfig): Promise<void>;
|
|
80
|
+
lint(inlineConfig?: PartialKeys<types_d_exports.LintInlineConfig, "command"> | PartialKeys<types_d_exports.BuildInlineConfig, "command">): Promise<void>;
|
|
80
81
|
/**
|
|
81
82
|
* Build the project
|
|
82
83
|
*
|
|
@@ -86,7 +87,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
86
87
|
* @param inlineConfig - The inline configuration for the build command
|
|
87
88
|
* @returns A promise that resolves when the build command has completed
|
|
88
89
|
*/
|
|
89
|
-
build(inlineConfig?: types_d_exports.BuildInlineConfig): Promise<void>;
|
|
90
|
+
build(inlineConfig?: PartialKeys<types_d_exports.BuildInlineConfig, "command">): Promise<void>;
|
|
90
91
|
/**
|
|
91
92
|
* Prepare the documentation for the project
|
|
92
93
|
*
|
|
@@ -102,7 +103,7 @@ declare class PowerlinesAPI<TResolvedConfig extends types_d_exports.ResolvedConf
|
|
|
102
103
|
*
|
|
103
104
|
* @param inlineConfig - The inline configuration for the deploy command
|
|
104
105
|
*/
|
|
105
|
-
deploy(inlineConfig?: types_d_exports.DeployInlineConfig): Promise<void>;
|
|
106
|
+
deploy(inlineConfig?: PartialKeys<types_d_exports.DeployInlineConfig, "command">): Promise<void>;
|
|
106
107
|
/**
|
|
107
108
|
* Finalization process
|
|
108
109
|
*
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/api.ts","../schemas/fs.ts","../src/index.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/api.ts","../schemas/fs.ts","../src/index.ts"],"mappings":"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"}
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { c as FileMetadata, d as FileSystem, f as _capnpFileId, l as FileMetadata_KeyValuePair, s as FileId, t as PowerlinesAPI, u as FileStorage } from "./api-
|
|
1
|
+
import { c as FileMetadata, d as FileSystem, f as _capnpFileId, l as FileMetadata_KeyValuePair, s as FileId, t as PowerlinesAPI, u as FileStorage } from "./api-CDr8k5H4.mjs";
|
|
2
2
|
import "./tsconfig-D9GCB2I9.mjs";
|
|
3
3
|
import "./virtual-DvkJm7gK.mjs";
|
|
4
4
|
import { getWorkspaceRoot } from "@stryke/fs/get-workspace-root";
|
package/dist/next.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
|
-
require('./api-
|
|
2
|
+
require('./api-CtLMQnQ_.cjs');
|
|
3
3
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
4
4
|
require('./virtual-Cbvj12lU.cjs');
|
|
5
5
|
const require_webpack = require('./webpack.cjs');
|
package/dist/next.mjs
CHANGED
package/dist/nuxt.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
const require_vite = require('./vite.cjs');
|
package/dist/nuxt.mjs
CHANGED
package/dist/rolldown.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let defu = require("defu");
|
package/dist/rolldown.mjs
CHANGED
package/dist/rollup.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let unplugin = require("unplugin");
|
package/dist/rollup.mjs
CHANGED
package/dist/rspack.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let unplugin = require("unplugin");
|
package/dist/rspack.mjs
CHANGED
package/dist/tsdown.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
require('./api-
|
|
3
|
+
require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
const require_rolldown = require('./rolldown.cjs');
|
package/dist/tsdown.mjs
CHANGED
package/dist/tsup.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
require('./api-
|
|
3
|
+
require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
const require_esbuild = require('./esbuild.cjs');
|
package/dist/tsup.mjs
CHANGED
package/dist/unloader.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let unplugin = require("unplugin");
|
package/dist/unloader.mjs
CHANGED
package/dist/unplugin.cjs
CHANGED
package/dist/unplugin.mjs
CHANGED
package/dist/vite.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let defu = require("defu");
|
package/dist/vite.mjs
CHANGED
package/dist/webpack.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
2
2
|
const require_chunk = require('./chunk-AIJqnxB6.cjs');
|
|
3
|
-
const require_api = require('./api-
|
|
3
|
+
const require_api = require('./api-CtLMQnQ_.cjs');
|
|
4
4
|
require('./tsconfig-BJrUrPC_.cjs');
|
|
5
5
|
require('./virtual-Cbvj12lU.cjs');
|
|
6
6
|
let unplugin = require("unplugin");
|
package/dist/webpack.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "powerlines",
|
|
3
|
-
"version": "0.42.
|
|
3
|
+
"version": "0.42.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The \"framework framework\" that simplifies modern dev tool usage, generates virtual (or actual) code modules, and improves DX across the board.",
|
|
6
6
|
"keywords": [
|
|
@@ -341,7 +341,7 @@
|
|
|
341
341
|
"dependencies": {
|
|
342
342
|
"@cacheable/memory": "^2.0.8",
|
|
343
343
|
"@donedeal0/superdiff": "^3.2.0",
|
|
344
|
-
"@powerlines/core": "^0.
|
|
344
|
+
"@powerlines/core": "^0.6.1",
|
|
345
345
|
"@storm-software/config": "^1.135.40",
|
|
346
346
|
"@storm-software/config-tools": "^1.189.39",
|
|
347
347
|
"@stryke/capnp": "^0.12.89",
|
|
@@ -370,15 +370,15 @@
|
|
|
370
370
|
"unplugin": "^3.0.0"
|
|
371
371
|
},
|
|
372
372
|
"devDependencies": {
|
|
373
|
-
"@powerlines/plugin-esbuild": "^0.13.
|
|
374
|
-
"@powerlines/plugin-rolldown": "^0.7.
|
|
375
|
-
"@powerlines/plugin-rollup": "^0.7.
|
|
376
|
-
"@powerlines/plugin-rspack": "^0.5.
|
|
377
|
-
"@powerlines/plugin-tsdown": "^0.1.
|
|
378
|
-
"@powerlines/plugin-tsup": "^0.12.
|
|
379
|
-
"@powerlines/plugin-unbuild": "^0.5.
|
|
380
|
-
"@powerlines/plugin-vite": "^0.14.
|
|
381
|
-
"@powerlines/plugin-webpack": "^0.5.
|
|
373
|
+
"@powerlines/plugin-esbuild": "^0.13.364",
|
|
374
|
+
"@powerlines/plugin-rolldown": "^0.7.366",
|
|
375
|
+
"@powerlines/plugin-rollup": "^0.7.364",
|
|
376
|
+
"@powerlines/plugin-rspack": "^0.5.363",
|
|
377
|
+
"@powerlines/plugin-tsdown": "^0.1.309",
|
|
378
|
+
"@powerlines/plugin-tsup": "^0.12.365",
|
|
379
|
+
"@powerlines/plugin-unbuild": "^0.5.364",
|
|
380
|
+
"@powerlines/plugin-vite": "^0.14.359",
|
|
381
|
+
"@powerlines/plugin-webpack": "^0.5.363",
|
|
382
382
|
"@storm-software/testing-tools": "^1.119.114",
|
|
383
383
|
"@stryke/types": "^0.11.1",
|
|
384
384
|
"@types/bun": "^1.3.10",
|
|
@@ -426,5 +426,5 @@
|
|
|
426
426
|
"unloader": { "optional": true }
|
|
427
427
|
},
|
|
428
428
|
"publishConfig": { "access": "public" },
|
|
429
|
-
"gitHead": "
|
|
429
|
+
"gitHead": "d00a8306c2e4bc7b8fd853b0f935b5ef5f32d845"
|
|
430
430
|
}
|