powerlines 0.47.87 → 0.47.89

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.
@@ -0,0 +1,18 @@
1
+
2
+
3
+ import __tsdown_shims_path from 'node:path'
4
+ import __tsdown_shims_url from 'node:url'
5
+
6
+ const __TSDOWN_SHIM_FILENAME__ = /* @__PURE__ */ __tsdown_shims_url.fileURLToPath(import.meta.url)
7
+ const __TSDOWN_SHIM_DIRNAME__ = /* @__PURE__ */ __tsdown_shims_path.dirname(__TSDOWN_SHIM_FILENAME__)
8
+
9
+ let vitest = require("vitest");
10
+
11
+ //#region src/constants.test.ts
12
+ (0, vitest.describe)("devkit/powerlines constants re-exports", () => {
13
+ (0, vitest.it)("re-exports constants from @powerlines/core", async () => {
14
+ (0, vitest.expect)(typeof await Promise.resolve().then(() => require("./constants.cjs"))).toBe("object");
15
+ });
16
+ });
17
+
18
+ //#endregion
@@ -0,0 +1 @@
1
+ export { };
@@ -0,0 +1,2 @@
1
+ import __tsdown_shims_path from 'node:path';
2
+ import __tsdown_shims_url from 'node:url';
@@ -0,0 +1,20 @@
1
+
2
+
3
+ import __tsdown_shims_path from 'node:path'
4
+ import __tsdown_shims_url from 'node:url'
5
+
6
+ const __TSDOWN_SHIM_FILENAME__ = /* @__PURE__ */ __tsdown_shims_url.fileURLToPath(import.meta.url)
7
+ const __TSDOWN_SHIM_DIRNAME__ = /* @__PURE__ */ __tsdown_shims_path.dirname(__TSDOWN_SHIM_FILENAME__)
8
+
9
+ import { describe, expect, it } from "vitest";
10
+
11
+ //#region src/constants.test.ts
12
+ describe("devkit/powerlines constants re-exports", () => {
13
+ it("re-exports constants from @powerlines/core", async () => {
14
+ expect(typeof await import("./constants.mjs")).toBe("object");
15
+ });
16
+ });
17
+
18
+ //#endregion
19
+ export { };
20
+ //# sourceMappingURL=constants.test.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"constants.test.mjs","names":[],"sources":["../src/constants.test.ts"],"sourcesContent":["import { describe, expect, it } from \"vitest\";\n\ndescribe(\"devkit/powerlines constants re-exports\", () => {\n it(\"re-exports constants from @powerlines/core\", async () => {\n // Dynamic import to verify the module loads without error\n const mod = await import(\"./constants\");\n expect(typeof mod).toBe(\"object\");\n });\n});\n"],"mappings":";;;;;;;;;;;AAEA,SAAS,gDAAgD;CACvD,GAAG,8CAA8C,YAAY;EAG3D,OAAO,OAAO,MADI,OAAO,kBACR,EAAE,KAAK,QAAQ;CAClC,CAAC;AACH,CAAC"}
@@ -0,0 +1,24 @@
1
+
2
+
3
+ import __tsdown_shims_path from 'node:path'
4
+ import __tsdown_shims_url from 'node:url'
5
+
6
+ const __TSDOWN_SHIM_FILENAME__ = /* @__PURE__ */ __tsdown_shims_url.fileURLToPath(import.meta.url)
7
+ const __TSDOWN_SHIM_DIRNAME__ = /* @__PURE__ */ __tsdown_shims_path.dirname(__TSDOWN_SHIM_FILENAME__)
8
+
9
+ const require_engine = require('./engine.cjs');
10
+ let vitest = require("vitest");
11
+
12
+ //#region src/engine.test.ts
13
+ (0, vitest.describe)("createPowerlines", () => {
14
+ (0, vitest.it)("is a function", () => {
15
+ (0, vitest.expect)(typeof require_engine.createPowerlines).toBe("function");
16
+ });
17
+ (0, vitest.it)("returns a Promise", () => {
18
+ const result = require_engine.createPowerlines({ cwd: process.cwd() });
19
+ (0, vitest.expect)(result).toBeInstanceOf(Promise);
20
+ result.catch(() => {});
21
+ });
22
+ });
23
+
24
+ //#endregion
@@ -0,0 +1 @@
1
+ export { };
@@ -0,0 +1,2 @@
1
+ import __tsdown_shims_path from 'node:path';
2
+ import __tsdown_shims_url from 'node:url';
@@ -0,0 +1,26 @@
1
+
2
+
3
+ import __tsdown_shims_path from 'node:path'
4
+ import __tsdown_shims_url from 'node:url'
5
+
6
+ const __TSDOWN_SHIM_FILENAME__ = /* @__PURE__ */ __tsdown_shims_url.fileURLToPath(import.meta.url)
7
+ const __TSDOWN_SHIM_DIRNAME__ = /* @__PURE__ */ __tsdown_shims_path.dirname(__TSDOWN_SHIM_FILENAME__)
8
+
9
+ import { createPowerlines } from "./engine.mjs";
10
+ import { describe, expect, it } from "vitest";
11
+
12
+ //#region src/engine.test.ts
13
+ describe("createPowerlines", () => {
14
+ it("is a function", () => {
15
+ expect(typeof createPowerlines).toBe("function");
16
+ });
17
+ it("returns a Promise", () => {
18
+ const result = createPowerlines({ cwd: process.cwd() });
19
+ expect(result).toBeInstanceOf(Promise);
20
+ result.catch(() => {});
21
+ });
22
+ });
23
+
24
+ //#endregion
25
+ export { };
26
+ //# sourceMappingURL=engine.test.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"engine.test.mjs","names":[],"sources":["../src/engine.test.ts"],"sourcesContent":["import { describe, expect, it } from \"vitest\";\nimport { createPowerlines } from \"./engine\";\n\ndescribe(\"createPowerlines\", () => {\n it(\"is a function\", () => {\n expect(typeof createPowerlines).toBe(\"function\");\n });\n\n it(\"returns a Promise\", () => {\n // We only verify the return type is a Promise; we don't actually execute the engine\n const result = createPowerlines({ cwd: process.cwd() });\n expect(result).toBeInstanceOf(Promise);\n // Ensure we don't let the promise settle unhandled\n result.catch(() => {});\n });\n});\n"],"mappings":";;;;;;;;;;;;AAGA,SAAS,0BAA0B;CACjC,GAAG,uBAAuB;EACxB,OAAO,OAAO,gBAAgB,EAAE,KAAK,UAAU;CACjD,CAAC;CAED,GAAG,2BAA2B;EAE5B,MAAM,SAAS,iBAAiB,EAAE,KAAK,QAAQ,IAAI,EAAE,CAAC;EACtD,OAAO,MAAM,EAAE,eAAe,OAAO;EAErC,OAAO,YAAY,CAAC,CAAC;CACvB,CAAC;AACH,CAAC"}
package/dist/package.cjs CHANGED
@@ -8,7 +8,7 @@ const __TSDOWN_SHIM_DIRNAME__ = /* @__PURE__ */ __tsdown_shims_path.dirname(__TS
8
8
 
9
9
 
10
10
  //#region package.json
11
- var version = "0.47.87";
11
+ var version = "0.47.89";
12
12
 
13
13
  //#endregion
14
14
  Object.defineProperty(exports, 'version', {
package/dist/package.mjs CHANGED
@@ -7,7 +7,7 @@ const __TSDOWN_SHIM_FILENAME__ = /* @__PURE__ */ __tsdown_shims_url.fileURLToPat
7
7
  const __TSDOWN_SHIM_DIRNAME__ = /* @__PURE__ */ __tsdown_shims_path.dirname(__TSDOWN_SHIM_FILENAME__)
8
8
 
9
9
  //#region package.json
10
- var version = "0.47.87";
10
+ var version = "0.47.89";
11
11
 
12
12
  //#endregion
13
13
  export { version };
@@ -1,5 +1,5 @@
1
1
  { "extends": "{{ relativeToWorkspaceRoot }}tsconfig.base.json",
2
2
  "compilerOptions": { "outDir": "{{ relativeToWorkspaceRoot }}dist/out-tsc",
3
3
  "verbatimModuleSyntax": false }, "include": ["src/**/*.ts", "src/**/*.js",
4
- ".storm/**/*.ts"], "exclude": ["jest.config.ts", "src/**/*.spec.ts",
4
+ ".storm/**/*.ts"], "exclude": ["vitest.config.mts", "src/**/*.spec.ts",
5
5
  "src/**/*.test.ts"], "reflection": true }
@@ -1,3 +1,3 @@
1
- { "extends": "./tsconfig.json", "compilerOptions": { "types": ["jest", "node"],
1
+ { "extends": "./tsconfig.json", "compilerOptions": { "types": ["node"],
2
2
  "outDir": "{{ relativeToWorkspaceRoot }}dist/out-tsc" }, "include": [
3
- "jest.config.ts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts" ] }
3
+ "vitest.config.mts", "src/**/*.test.ts", "src/**/*.spec.ts", "src/**/*.d.ts" ] }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powerlines",
3
- "version": "0.47.87",
3
+ "version": "0.47.89",
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": [
@@ -66,10 +66,18 @@
66
66
  "import": "./dist/constants.mjs",
67
67
  "require": "./dist/constants.cjs"
68
68
  },
69
+ "./constants.test": {
70
+ "import": "./dist/constants.test.mjs",
71
+ "require": "./dist/constants.test.cjs"
72
+ },
69
73
  "./engine": {
70
74
  "import": "./dist/engine.mjs",
71
75
  "require": "./dist/engine.cjs"
72
76
  },
77
+ "./engine.test": {
78
+ "import": "./dist/engine.test.mjs",
79
+ "require": "./dist/engine.test.cjs"
80
+ },
73
81
  "./esbuild": {
74
82
  "import": "./dist/esbuild.mjs",
75
83
  "require": "./dist/esbuild.cjs"
@@ -134,25 +142,25 @@
134
142
  "files": ["dist", "files"],
135
143
  "dependencies": {
136
144
  "@babel/types": "8.0.0-rc.6",
137
- "@powerlines/core": "^0.48.26",
138
- "@powerlines/engine": "^0.49.28",
139
- "@powerlines/schema": "^0.11.70",
140
- "@powerlines/unplugin": "^0.0.74",
141
- "@storm-software/config": "^1.137.67",
142
- "@storm-software/config-tools": "^1.190.35",
143
- "@stryke/convert": "^0.7.10",
144
- "@stryke/env": "^0.20.96",
145
- "@stryke/fs": "^0.33.79",
145
+ "@powerlines/core": "^0.48.28",
146
+ "@powerlines/engine": "^0.49.30",
147
+ "@powerlines/schema": "^0.11.72",
148
+ "@powerlines/unplugin": "^0.0.76",
149
+ "@storm-software/config": "^1.137.69",
150
+ "@storm-software/config-tools": "^1.190.37",
151
+ "@stryke/convert": "^0.7.11",
152
+ "@stryke/env": "^0.20.97",
153
+ "@stryke/fs": "^0.33.80",
146
154
  "defu": "^6.1.7",
147
155
  "unplugin": "^3.0.0"
148
156
  },
149
157
  "devDependencies": {
150
- "@storm-software/testing-tools": "^1.119.188",
151
- "@stryke/types": "^0.12.7",
158
+ "@storm-software/testing-tools": "^1.119.190",
159
+ "@stryke/types": "^0.12.8",
152
160
  "@types/node": "^25.9.1",
153
161
  "typescript": "^6.0.3",
154
162
  "undici-types": "^7.26.0"
155
163
  },
156
164
  "publishConfig": { "access": "public" },
157
- "gitHead": "96a654a26c414db84da2bd824d8f821e6c0fe3ff"
165
+ "gitHead": "0b8ebdde5e6e57b8a983e447e0fbb94469a5bd1a"
158
166
  }