powerlines 0.47.40 → 0.47.42
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/engine.d.cts +3 -4
- package/dist/engine.d.cts.map +1 -1
- package/dist/engine.d.mts +3 -4
- package/dist/engine.d.mts.map +1 -1
- package/dist/engine.mjs.map +1 -1
- package/dist/types.d.cts +4 -4
- package/dist/types.d.mts +4 -4
- package/package.json +7 -7
package/dist/engine.d.cts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import * as _$_powerlines_engine0 from "@powerlines/engine";
|
|
2
1
|
import { EngineOptions } from "@powerlines/engine";
|
|
3
|
-
export * from "@powerlines/engine";
|
|
4
|
-
export * from "@powerlines/engine/context";
|
|
2
|
+
export type * from "@powerlines/engine";
|
|
3
|
+
export type * from "@powerlines/engine/context";
|
|
5
4
|
|
|
6
5
|
//#region src/engine.d.ts
|
|
7
6
|
/**
|
|
@@ -10,7 +9,7 @@ export * from "@powerlines/engine/context";
|
|
|
10
9
|
* @param options - The user configuration options.
|
|
11
10
|
* @returns A promise that resolves to a {@link PowerlinesEngine} instance.
|
|
12
11
|
*/
|
|
13
|
-
declare function createPowerlines(options: Omit<EngineOptions, "framework">): Promise<
|
|
12
|
+
declare function createPowerlines(options: Omit<EngineOptions, "framework">): Promise<import("@powerlines/engine").PowerlinesEngine<readonly string[]>>;
|
|
14
13
|
//#endregion
|
|
15
14
|
export { createPowerlines };
|
|
16
15
|
//# sourceMappingURL=engine.d.cts.map
|
package/dist/engine.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"engine.d.cts","names":[],"sources":["../src/engine.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"engine.d.cts","names":[],"sources":["../src/engine.ts"],"mappings":";;;;;;;;;AA+BA;;iBAAsB,gBAAA,CACpB,OAAA,EAAS,IAAA,CAAK,aAAA,iBAA2B,OAAA,8BAAA,gBAAA"}
|
package/dist/engine.d.mts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import * as _$_powerlines_engine0 from "@powerlines/engine";
|
|
2
1
|
import { EngineOptions } from "@powerlines/engine";
|
|
3
|
-
export * from "@powerlines/engine";
|
|
4
|
-
export * from "@powerlines/engine/context";
|
|
2
|
+
export type * from "@powerlines/engine";
|
|
3
|
+
export type * from "@powerlines/engine/context";
|
|
5
4
|
|
|
6
5
|
//#region src/engine.d.ts
|
|
7
6
|
/**
|
|
@@ -10,7 +9,7 @@ export * from "@powerlines/engine/context";
|
|
|
10
9
|
* @param options - The user configuration options.
|
|
11
10
|
* @returns A promise that resolves to a {@link PowerlinesEngine} instance.
|
|
12
11
|
*/
|
|
13
|
-
declare function createPowerlines(options: Omit<EngineOptions, "framework">): Promise<
|
|
12
|
+
declare function createPowerlines(options: Omit<EngineOptions, "framework">): Promise<import("@powerlines/engine").PowerlinesEngine<readonly string[]>>;
|
|
14
13
|
//#endregion
|
|
15
14
|
export { createPowerlines };
|
|
16
15
|
//# sourceMappingURL=engine.d.mts.map
|
package/dist/engine.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"engine.d.mts","names":[],"sources":["../src/engine.ts"],"mappings":"
|
|
1
|
+
{"version":3,"file":"engine.d.mts","names":[],"sources":["../src/engine.ts"],"mappings":";;;;;;;;;AA+BA;;iBAAsB,gBAAA,CACpB,OAAA,EAAS,IAAA,CAAK,aAAA,iBAA2B,OAAA,8BAAA,gBAAA"}
|
package/dist/engine.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"engine.mjs","names":[],"sources":["../src/engine.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { EngineOptions } from \"@powerlines/engine\";\nimport { createEngine } from \"@powerlines/engine\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\n\nexport type * from \"@powerlines/engine\";\nexport type * from \"@powerlines/engine/context\";\n\n/**\n * Creates a new {@link PowerlinesEngine} instance.\n *\n * @param options - The user configuration options.\n * @returns A promise that resolves to a {@link PowerlinesEngine} instance.\n */\nexport async function createPowerlines(\n options: Omit<EngineOptions, \"framework\">\n) {\n const engine = await createEngine(options);\n\n engine.context.info(\n `🔌 ${titleCase(engine.context.framework.name)} Engine v${\n engine.context.framework.version || \"1.0.0\"\n } is running...`\n );\n\n return engine;\n}\n"],"mappings":";;;;;;;;;;AA+BA,eAAsB,iBACpB,SACA;CACA,MAAM,SAAS,MAAM,aAAa,
|
|
1
|
+
{"version":3,"file":"engine.mjs","names":[],"sources":["../src/engine.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { EngineOptions } from \"@powerlines/engine\";\nimport { createEngine } from \"@powerlines/engine\";\nimport { titleCase } from \"@stryke/string-format/title-case\";\n\nexport type * from \"@powerlines/engine\";\nexport type * from \"@powerlines/engine/context\";\n\n/**\n * Creates a new {@link PowerlinesEngine} instance.\n *\n * @param options - The user configuration options.\n * @returns A promise that resolves to a {@link PowerlinesEngine} instance.\n */\nexport async function createPowerlines(\n options: Omit<EngineOptions, \"framework\">\n) {\n const engine = await createEngine(options);\n\n engine.context.info(\n `🔌 ${titleCase(engine.context.framework.name)} Engine v${\n engine.context.framework.version || \"1.0.0\"\n } is running...`\n );\n\n return engine;\n}\n"],"mappings":";;;;;;;;;;AA+BA,eAAsB,iBACpB,SACA;CACA,MAAM,SAAS,MAAM,aAAa,OAAO;CAEzC,OAAO,QAAQ,KACb,MAAM,UAAU,OAAO,QAAQ,UAAU,IAAI,EAAE,WAC7C,OAAO,QAAQ,UAAU,WAAW,QACrC,eACH;CAEA,OAAO;AACT"}
|
package/dist/types.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "@powerlines/engine/context";
|
|
2
|
-
export * from "@powerlines/core";
|
|
3
|
-
export * from "@powerlines/engine/types";
|
|
4
|
-
export * from "@powerlines/unplugin";
|
|
1
|
+
export type * from "@powerlines/engine/context";
|
|
2
|
+
export type * from "@powerlines/core";
|
|
3
|
+
export type * from "@powerlines/engine/types";
|
|
4
|
+
export type * from "@powerlines/unplugin";
|
package/dist/types.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "@powerlines/engine/context";
|
|
2
|
-
export * from "@powerlines/core";
|
|
3
|
-
export * from "@powerlines/engine/types";
|
|
4
|
-
export * from "@powerlines/unplugin";
|
|
1
|
+
export type * from "@powerlines/engine/context";
|
|
2
|
+
export type * from "@powerlines/core";
|
|
3
|
+
export type * from "@powerlines/engine/types";
|
|
4
|
+
export type * from "@powerlines/unplugin";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "powerlines",
|
|
3
|
-
"version": "0.47.
|
|
3
|
+
"version": "0.47.42",
|
|
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": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"repository": {
|
|
28
28
|
"type": "github",
|
|
29
29
|
"url": "https://github.com/storm-software/powerlines.git",
|
|
30
|
-
"directory": "packages/
|
|
30
|
+
"directory": "packages/devkit/powerlines"
|
|
31
31
|
},
|
|
32
32
|
"funding": {
|
|
33
33
|
"type": "github",
|
|
@@ -124,9 +124,9 @@
|
|
|
124
124
|
"files": ["dist", "files"],
|
|
125
125
|
"dependencies": {
|
|
126
126
|
"@babel/types": "8.0.0-rc.5",
|
|
127
|
-
"@powerlines/core": "^0.15.
|
|
128
|
-
"@powerlines/engine": "^0.15.
|
|
129
|
-
"@powerlines/unplugin": "^0.0.
|
|
127
|
+
"@powerlines/core": "^0.15.20",
|
|
128
|
+
"@powerlines/engine": "^0.15.22",
|
|
129
|
+
"@powerlines/unplugin": "^0.0.35",
|
|
130
130
|
"@storm-software/config": "^1.137.52",
|
|
131
131
|
"@storm-software/config-tools": "^1.190.20",
|
|
132
132
|
"@stryke/fs": "^0.33.76",
|
|
@@ -138,11 +138,11 @@
|
|
|
138
138
|
"devDependencies": {
|
|
139
139
|
"@storm-software/testing-tools": "^1.119.173",
|
|
140
140
|
"@stryke/types": "^0.12.4",
|
|
141
|
-
"@types/node": "^25.
|
|
141
|
+
"@types/node": "^25.9.0",
|
|
142
142
|
"typescript": "^6.0.3",
|
|
143
143
|
"undici-types": "^7.25.0"
|
|
144
144
|
},
|
|
145
145
|
"publishConfig": { "access": "public" },
|
|
146
146
|
"bin": { "powerlines": "./bin/bin.mjs" },
|
|
147
|
-
"gitHead": "
|
|
147
|
+
"gitHead": "2dbbdb2f6fde8f0f49208757c7c1b18deb96ff97"
|
|
148
148
|
}
|