@tanagram/lore 0.1.267 → 0.1.268
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/index.js +235 -235
- package/package.json +3 -3
- package/scripts/runPostinstallCommand.mjs +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanagram/lore",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.268",
|
|
4
4
|
"description": "Lore CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"tsx": "^4.22.4",
|
|
33
33
|
"typescript": "^7.0.2",
|
|
34
34
|
"@lore/contracts": "0.1.0",
|
|
35
|
-
"@lore/db": "0.1.0",
|
|
36
35
|
"@lore/identity-store": "0.1.0",
|
|
37
|
-
"@lore/
|
|
36
|
+
"@lore/db": "0.1.0",
|
|
38
37
|
"@lore/logging": "0.1.0",
|
|
38
|
+
"@lore/transcript-locate": "0.1.0",
|
|
39
39
|
"@lore/transcripts": "0.1.0"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
@@ -6,6 +6,10 @@ import { fileURLToPath } from 'node:url';
|
|
|
6
6
|
|
|
7
7
|
import { checkNodeVersion } from './nodeVersionGuard.mjs';
|
|
8
8
|
|
|
9
|
+
if (process.env.LORE_SKIP_CLI_POSTINSTALL === '1') {
|
|
10
|
+
process.exit(0);
|
|
11
|
+
}
|
|
12
|
+
|
|
9
13
|
// Skip postinstall (rather than crashing it) on unsupported Node so
|
|
10
14
|
// `npm install` finishes and the user only sees the engines warning.
|
|
11
15
|
// The CLI's runtime guard reports the same constraint on next run.
|