@ingestron/core 0.12.0 → 0.12.1

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/README.md CHANGED
@@ -9,7 +9,7 @@ connector runtime assets and standards through explicit package references.
9
9
 
10
10
  ## Use the library
11
11
 
12
- Requires Node 22 for runtime operations. The npm package name is `@ingestron/core`;
12
+ Requires Node 22.12 or newer for runtime operations. The npm package name is `@ingestron/core`;
13
13
  initial registry publication is pending. To build the public source checkout:
14
14
 
15
15
  ```sh
@@ -27,7 +27,7 @@
27
27
  "dist/core/planner.js": "f91902f4c37a7588965360fcddbda79301b59a0b66ef2f70c0378fa5dfcc7088",
28
28
  "dist/core/project-build.js": "1f1002b4f6c506986c5aa6a5bb01ad5f3b4658a7a1319b65d79eaa67916fb994",
29
29
  "dist/core/provider-commands.js": "8bd82821f6ed0eefce8216e7c03c271f28cb9f4bfda7724d5c1de6be1855e535",
30
- "dist/core/provider-starter.js": "0ad05cbfed3d934196f82f8b50cb982314796ef9c5f012ad49935166e93e0fb0",
30
+ "dist/core/provider-starter.js": "69795c1b79360e48664e91db0768f813fe4efc91aede003e1bf032f71731754c",
31
31
  "dist/core/report-pack-schema.js": "fe8ecdc2b8deacd8b2a1e46588ee06744a7b6d8e7342786e320f74cc848665fa",
32
32
  "dist/core/schema.js": "4cbad607f372584fe83f44a121bd978dea7529db5c1eb51168dcd62812c2eeab",
33
33
  "dist/core/workflows.js": "1a5fe93b34d963efb07ab1f67641106386fa3ef9d9e80bd3e59c13795925fda6",
@@ -66,7 +66,7 @@
66
66
  "src/core/planner.ts": "498f5405f3088ee6d54ec8ab4a458813757697c150a56eab33f547aebb214da1",
67
67
  "src/core/project-build.ts": "feb0fe50aff7b1fbdc8d96bcdb177a72a412639d1af98c3cff3b010de90a6428",
68
68
  "src/core/provider-commands.ts": "f8a045230f61be0273910276b51e5c2e4bc0659f34c8a9361a38ab292c39eb4c",
69
- "src/core/provider-starter.ts": "e0f50e2de10d7ec345f64ab3f7b0a08bd0e7df70f36b7d9ccaed78d98ce3a47e",
69
+ "src/core/provider-starter.ts": "eeb504e347638bb933d204dd4d5a7e3e94ff45db136c5edd3fb457061342e405",
70
70
  "src/core/report-pack-schema.ts": "cf2c68f3725cef847627ce61acd0887f04d0067bc324841d8a552bcb12d274b0",
71
71
  "src/core/schema.ts": "dc1c5464878916bbdee08662320310bb202a21ebfca9e534a30746603c9aa46f",
72
72
  "src/core/workflows.ts": "b8afae8637eb92b58ab41a41fc245950e1c8e8820a6a27358508ae54c04c7a78",
@@ -127,7 +127,7 @@ export function render(plan) {
127
127
  build: "node scripts/check.mjs build",
128
128
  },
129
129
  devDependencies: { "@ingestron/core": version },
130
- engines: { node: ">=22 <23" },
130
+ engines: { node: ">=22.12.0" },
131
131
  }, null, 2) + "\n",
132
132
  "test/provider.test.mjs": `import {test} from 'node:test';
133
133
  import assert from 'node:assert/strict';
@@ -142,7 +142,7 @@ const result=await executeAsync({root:process.cwd(),allowWrite:build},build?'bui
142
142
  console.log(JSON.stringify(result,null,2));
143
143
  if(!result.ok)process.exitCode=1;
144
144
  `,
145
- "README.md": `# ${id} provider starter\n\nA synthetic SQL generator demonstrating the Ingestron plugin contract. It has no platform connection or execution adapter.\n\nUse Node 22. Run npm install, npm test, npm run check and npm run build. Review out/model.sql and out/ingestron-project.json. Change the target to an invalid identifier to verify rejection.\n\nReplace the example with your platform implementation and tests before publishing. Declare only implemented capabilities. The core plugin contract is documented at https://github.com/ingestron/core/blob/main/docs/plugins.md.\n`,
145
+ "README.md": `# ${id} provider starter\n\nA synthetic SQL generator demonstrating the Ingestron plugin contract. It has no platform connection or execution adapter.\n\nUse Node 22.12 or newer. Run npm install, npm test, npm run check and npm run build. Review out/model.sql and out/ingestron-project.json. Change the target to an invalid identifier to verify rejection.\n\nReplace the example with your platform implementation and tests before publishing. Declare only implemented capabilities. The core plugin contract is documented at https://github.com/ingestron/core/blob/main/docs/plugins.md.\n`,
146
146
  "SECURITY.md": "Do not include secrets or source data in packages or fixtures. Compiler hooks are offline; credentials belong in customer execution context. Report suspected vulnerabilities privately to the repository owner.\n",
147
147
  ".gitignore": "out/\nnode_modules/\n.ingestron/\n",
148
148
  };
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@ingestron/core",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "type": "module",
5
5
  "description": "Shared Ingestron project compiler, operations and editor schemas",
6
6
  "license": "Apache-2.0",
7
7
  "engines": {
8
- "node": ">=22 <23"
8
+ "node": ">=22.12.0"
9
9
  },
10
10
  "files": [
11
11
  "dist",
@@ -45,6 +45,16 @@
45
45
  "type": "git",
46
46
  "url": "git+https://github.com/ingestron/core.git"
47
47
  },
48
+ "devDependencies": {
49
+ "@types/node": "22.20.1",
50
+ "prettier": "3.9.6",
51
+ "tsx": "4.23.13",
52
+ "typescript": "7.0.2"
53
+ },
54
+ "homepage": "https://ingestron.io",
55
+ "bugs": {
56
+ "url": "https://github.com/ingestron/core/issues"
57
+ },
48
58
  "scripts": {
49
59
  "build": "node scripts/build-assets.mjs && tsc && node scripts/compiler-fingerprint.mjs",
50
60
  "test": "tsx --test --test-concurrency=1 test/unit/*.test.ts test/providers/*.test.ts test/integration/*.test.ts",
@@ -54,19 +64,6 @@
54
64
  "release:check": "node scripts/release-check.mjs",
55
65
  "package:check": "tsx scripts/package-check.ts",
56
66
  "validate": "pnpm format:check && pnpm build && pnpm test && pnpm secrets:check && pnpm release:check && pnpm package:check",
57
- "prepack": "npm run build",
58
- "prepublishOnly": "node scripts/release-check.mjs --publish",
59
67
  "licences:inventory": "node scripts/licence-inventory.mjs"
60
- },
61
- "packageManager": "pnpm@10.15.0",
62
- "devDependencies": {
63
- "@types/node": "22.20.1",
64
- "prettier": "3.9.6",
65
- "tsx": "4.23.13",
66
- "typescript": "7.0.2"
67
- },
68
- "homepage": "https://ingestron.io",
69
- "bugs": {
70
- "url": "https://github.com/ingestron/core/issues"
71
68
  }
72
- }
69
+ }