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 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<_$_powerlines_engine0.PowerlinesEngine<readonly string[]>>;
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
@@ -1 +1 @@
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,CAA5B,qBAAA,CAA4B,gBAAA"}
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<_$_powerlines_engine0.PowerlinesEngine<readonly string[]>>;
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
@@ -1 +1 @@
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,CAA5B,qBAAA,CAA4B,gBAAA"}
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"}
@@ -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,QAAQ;AAE1C,QAAO,QAAQ,KACb,MAAM,UAAU,OAAO,QAAQ,UAAU,KAAK,CAAC,WAC7C,OAAO,QAAQ,UAAU,WAAW,QACrC,gBACF;AAED,QAAO"}
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.40",
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/devtools/powerlines"
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.18",
128
- "@powerlines/engine": "^0.15.20",
129
- "@powerlines/unplugin": "^0.0.33",
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.8.0",
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": "c5c293e753d59ab690265988c77bd535680ac71b"
147
+ "gitHead": "2dbbdb2f6fde8f0f49208757c7c1b18deb96ff97"
148
148
  }