powerlines 0.47.207 → 0.47.209

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,5 +1,5 @@
1
- const require_runtime = require('../_virtual/_rolldown/runtime.cjs');
1
+ const require_rolldown_runtime = require('../rolldown-runtime-gxpLtDVY.cjs');
2
2
  let _powerlines_engine_api = require("@powerlines/engine/api");
3
- _powerlines_engine_api = require_runtime.__toESM(_powerlines_engine_api, 1);
3
+ _powerlines_engine_api = require_rolldown_runtime.__toESM(_powerlines_engine_api, 1);
4
4
 
5
5
  module.exports = _powerlines_engine_api.default;
package/dist/config.cjs CHANGED
@@ -1,4 +1,4 @@
1
- const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
1
+ const require_rolldown_runtime = require('./rolldown-runtime-gxpLtDVY.cjs');
2
2
 
3
3
 
4
4
  var _powerlines_core_lib_config = require("@powerlines/core/lib/config");
package/dist/engine.cjs CHANGED
@@ -1,8 +1,11 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
- const require_package = require('./package.cjs');
3
2
  let _powerlines_engine = require("@powerlines/engine");
4
3
  let _stryke_string_format_title_case = require("@stryke/string-format/title-case");
5
4
 
5
+ //#region package.json
6
+ var version = "0.47.209";
7
+
8
+ //#endregion
6
9
  //#region src/engine.ts
7
10
  /**
8
11
  * Creates a new {@link PowerlinesEngine} instance.
@@ -12,7 +15,7 @@ let _stryke_string_format_title_case = require("@stryke/string-format/title-case
12
15
  */
13
16
  async function createPowerlines(options) {
14
17
  const engine = await (0, _powerlines_engine.createEngine)(options);
15
- engine.context.info(`🔌 ${(0, _stryke_string_format_title_case.titleCase)(engine.context.framework.name) || "Powerlines"} Engine v${engine.context.framework.version || require_package.version || "1.0.0"} is running...`);
18
+ engine.context.info(`🔌 ${(0, _stryke_string_format_title_case.titleCase)(engine.context.framework.name) || "Powerlines"} Engine v${engine.context.framework.version || version || "1.0.0"} is running...`);
16
19
  return engine;
17
20
  }
18
21
 
package/dist/engine.mjs CHANGED
@@ -1,7 +1,10 @@
1
- import { version } from "./package.mjs";
2
1
  import { createEngine } from "@powerlines/engine";
3
2
  import { titleCase } from "@stryke/string-format/title-case";
4
3
 
4
+ //#region package.json
5
+ var version = "0.47.209";
6
+
7
+ //#endregion
5
8
  //#region src/engine.ts
6
9
  /**
7
10
  * Creates a new {@link PowerlinesEngine} instance.
@@ -1 +1 @@
1
- {"version":3,"file":"engine.mjs","names":["packageJson.version"],"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\";\nimport packageJson from \"../package.json\" with { type: \"json\" };\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) || \"Powerlines\"} Engine v${\n engine.context.framework.version || packageJson.version || \"1.0.0\"\n } is running...`\n );\n\n return engine;\n}\n"],"mappings":";;;;;;;;;;;AAgCA,eAAsB,iBACpB,SACA;CACA,MAAM,SAAS,MAAM,aAAa,OAAO;CAEzC,OAAO,QAAQ,KACb,MAAM,UAAU,OAAO,QAAQ,UAAU,IAAI,KAAK,aAAa,WAC7D,OAAO,QAAQ,UAAU,WAAWA,WAAuB,QAC5D,eACH;CAEA,OAAO;AACT"}
1
+ {"version":3,"file":"engine.mjs","names":["packageJson.version"],"sources":["../package.json","../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\";\nimport packageJson from \"../package.json\" with { type: \"json\" };\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) || \"Powerlines\"} Engine v${\n engine.context.framework.version || packageJson.version || \"1.0.0\"\n } is running...`\n );\n\n return engine;\n}\n"],"mappings":";;;;;;;;;;;;;;ACgCA,eAAsB,iBACpB,SACA;CACA,MAAM,SAAS,MAAM,aAAa,OAAO;CAEzC,OAAO,QAAQ,KACb,MAAM,UAAU,OAAO,QAAQ,UAAU,IAAI,KAAK,aAAa,WAC7D,OAAO,QAAQ,UAAU,WAAWA,WAAuB,QAC5D,eACH;CAEA,OAAO;AACT"}
package/dist/index.cjs CHANGED
@@ -1,4 +1,4 @@
1
- const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
1
+ const require_rolldown_runtime = require('./rolldown-runtime-gxpLtDVY.cjs');
2
2
  require('./config.cjs');
3
3
  require('./plugin-utils.cjs');
4
4
  require('./storage.cjs');
@@ -1,4 +1,4 @@
1
- const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
1
+ const require_rolldown_runtime = require('./rolldown-runtime-gxpLtDVY.cjs');
2
2
 
3
3
 
4
4
  var _powerlines_core_plugin_utils = require("@powerlines/core/plugin-utils");
@@ -39,6 +39,21 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
39
39
  }) : target, mod));
40
40
 
41
41
  //#endregion
42
- exports.__exportAll = __exportAll;
43
- exports.__reExport = __reExport;
44
- exports.__toESM = __toESM;
42
+ Object.defineProperty(exports, '__exportAll', {
43
+ enumerable: true,
44
+ get: function () {
45
+ return __exportAll;
46
+ }
47
+ });
48
+ Object.defineProperty(exports, '__reExport', {
49
+ enumerable: true,
50
+ get: function () {
51
+ return __reExport;
52
+ }
53
+ });
54
+ Object.defineProperty(exports, '__toESM', {
55
+ enumerable: true,
56
+ get: function () {
57
+ return __toESM;
58
+ }
59
+ });
@@ -1,11 +1,11 @@
1
1
  Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
2
- const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
2
+ const require_rolldown_runtime = require('./rolldown-runtime-gxpLtDVY.cjs');
3
3
  let _powerlines_unplugin_esbuild = require("@powerlines/unplugin/esbuild");
4
4
  let _powerlines_core_lib_unplugin = require("@powerlines/core/lib/unplugin");
5
5
  let _stryke_helpers_omit = require("@stryke/helpers/omit");
6
6
  let _stryke_path_file_path_fns = require("@stryke/path/file-path-fns");
7
7
  let defu = require("defu");
8
- defu = require_runtime.__toESM(defu, 1);
8
+ defu = require_rolldown_runtime.__toESM(defu, 1);
9
9
  let esbuild = require("esbuild");
10
10
  let unplugin = require("unplugin");
11
11
 
package/dist/storage.cjs CHANGED
@@ -1,4 +1,4 @@
1
- const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
1
+ const require_rolldown_runtime = require('./rolldown-runtime-gxpLtDVY.cjs');
2
2
 
3
3
 
4
4
  var _powerlines_core_storage = require("@powerlines/core/storage");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powerlines",
3
- "version": "0.47.207",
3
+ "version": "0.47.209",
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": [
@@ -180,10 +180,10 @@
180
180
  "files": ["dist", "files"],
181
181
  "dependencies": {
182
182
  "@babel/types": "^8.0.4",
183
- "@power-plant/schema": "^0.0.85",
184
- "@powerlines/core": "^0.48.126",
185
- "@powerlines/engine": "^0.49.128",
186
- "@powerlines/unplugin": "^0.0.174",
183
+ "@power-plant/schema": "^0.0.87",
184
+ "@powerlines/core": "^0.48.128",
185
+ "@powerlines/engine": "^0.49.130",
186
+ "@powerlines/unplugin": "^0.0.176",
187
187
  "@storm-software/config": "^1.138.69",
188
188
  "@storm-software/config-tools": "^1.190.133",
189
189
  "@stryke/convert": "^0.7.39",
@@ -207,5 +207,5 @@
207
207
  "undici-types": "^7.29.0"
208
208
  },
209
209
  "publishConfig": { "access": "public" },
210
- "gitHead": "69c1cff402a9eb0300bdd49ce2bdc5384e1396ff"
210
+ "gitHead": "88974b224a5cdb97dbd377373c9ed7f8a8780324"
211
211
  }
package/dist/package.cjs DELETED
@@ -1,10 +0,0 @@
1
- //#region package.json
2
- var version = "0.47.207";
3
-
4
- //#endregion
5
- Object.defineProperty(exports, 'version', {
6
- enumerable: true,
7
- get: function () {
8
- return version;
9
- }
10
- });
package/dist/package.mjs DELETED
@@ -1,6 +0,0 @@
1
- //#region package.json
2
- var version = "0.47.207";
3
-
4
- //#endregion
5
- export { version };
6
- //# sourceMappingURL=package.mjs.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"package.mjs","names":[],"sources":["../package.json"],"sourcesContent":[""],"mappings":""}