@datapos/datapos-development 0.3.92 → 0.3.94
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.
|
@@ -7,7 +7,7 @@ async function S() {
|
|
|
7
7
|
try {
|
|
8
8
|
console.info("🚀 Building configuration...");
|
|
9
9
|
const o = JSON.parse(await e.readFile("package.json", "utf8")), n = JSON.parse(await e.readFile("config.json", "utf8"));
|
|
10
|
-
o.name && (n.id = o.name.replace("@datapos/", "")), o.version && (n.version = o.version), await e.writeFile("config.json", JSON.stringify(n, void 0, 4), "utf8"), console.info("✅ Configuration built.");
|
|
10
|
+
o.name && (n.id = o.name.replace("@datapos/", "").replace("@data-positioning/", "")), o.version && (n.version = o.version), await e.writeFile("config.json", JSON.stringify(n, void 0, 4), "utf8"), console.info("✅ Configuration built.");
|
|
11
11
|
} catch (o) {
|
|
12
12
|
console.error("❌ Error building configuration.", o);
|
|
13
13
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@datapos/datapos-development",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.94",
|
|
4
4
|
"description": "A TypeScript library of utilities for managing the Data Positioning repositories.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Jonathan Terrell <terrell.jm@gmail.com>",
|
|
@@ -25,8 +25,10 @@
|
|
|
25
25
|
"files": [
|
|
26
26
|
"dist"
|
|
27
27
|
],
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@datapos/datapos-shared": "^0.3.215"
|
|
30
|
+
},
|
|
28
31
|
"devDependencies": {
|
|
29
|
-
"@datapos/datapos-shared": "^0.3.215",
|
|
30
32
|
"@types/node": "^24.10.1",
|
|
31
33
|
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
|
32
34
|
"@typescript-eslint/parser": "^8.46.4",
|
|
@@ -55,15 +57,15 @@
|
|
|
55
57
|
"format": "prettier --write src/",
|
|
56
58
|
"lint": "eslint .",
|
|
57
59
|
"publish:toNPM": "npm publish --access public",
|
|
58
|
-
"release": "npm run _bump:version && npm run build && npm run
|
|
59
|
-
"sync
|
|
60
|
+
"release": "npm run _bump:version && npm run build && npm run _sync:withGitHub && npm run publish:toNPM",
|
|
61
|
+
"sync": "npm run _bump:version && npm run _sync:withGitHub",
|
|
60
62
|
"test": "node -e \"import('./dist/datapos-development.es.js').then(m => m.echoScriptNotImplemented('Test'))\"",
|
|
61
|
-
"update:dataPosDeps": "npm run _update:
|
|
63
|
+
"update:dataPosDeps": "npm run _update:sharedDep",
|
|
62
64
|
"_bump:version": "node -e \"import('./dist/datapos-development.es.js').then(m => m.bumpVersion())\"",
|
|
63
65
|
"_document:licenceReport": "license-report --only=prod,peer > LICENSES.json",
|
|
64
66
|
"_document:licenceCheck": "license-report-check --source ./LICENSES.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --output=table",
|
|
65
|
-
"
|
|
66
|
-
"_update:sharedDep": "npm install
|
|
67
|
+
"_sync:withGitHub": "node -e \"import('./dist/datapos-development.es.js').then(m => m.syncWithGitHub())\"",
|
|
68
|
+
"_update:sharedDep": "npm install @datapos/datapos-shared@latest"
|
|
67
69
|
},
|
|
68
70
|
"engines": {
|
|
69
71
|
"node": ">=22.0.0",
|