@neocompose/cli 0.4.0 → 0.4.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/CHANGELOG.md +8 -0
- package/dist/neo.mjs +2 -2
- package/dist/tooling/NeoCompose.Schema.Tooling.dll +0 -0
- package/dist/tooling/NeoCompose.Schema.Tooling.pdb +0 -0
- package/dist/tooling/NeoCompose.Schema.dll +0 -0
- package/dist/tooling/NeoCompose.Schema.pdb +0 -0
- package/dist/tooling/NeoCompose.SchemaCompiler.dll +0 -0
- package/dist/tooling/NeoCompose.SchemaCompiler.pdb +0 -0
- package/dist/tooling/schema-contract.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.4.1] - 2026-07-17
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Force the production CLI bundle and package-contract verification to run
|
|
8
|
+
before publication even when the local npm configuration disables lifecycle
|
|
9
|
+
scripts.
|
|
10
|
+
|
|
3
11
|
## [0.4.0] - 2026-07-17
|
|
4
12
|
|
|
5
13
|
### Breaking
|
package/dist/neo.mjs
CHANGED
|
@@ -1390,7 +1390,7 @@ var init_source_protocol = __esm({
|
|
|
1390
1390
|
SCHEMA_SOURCE_MANIFEST_NAME = "neo-schema-manifest-v3";
|
|
1391
1391
|
SCHEMA_COMPILER_PROTOCOL_VERSION = 5;
|
|
1392
1392
|
SCHEMA_SDK_VERSION = "3.1.0";
|
|
1393
|
-
SCHEMA_CLI_VERSION = "0.4.
|
|
1393
|
+
SCHEMA_CLI_VERSION = "0.4.1";
|
|
1394
1394
|
SCHEMA_API_TARGET = "netstandard2.1";
|
|
1395
1395
|
SCHEMA_REFERENCE_ASSEMBLY_SET = "NETStandard.Library.Ref/2.1.0";
|
|
1396
1396
|
SCHEMA_REQUIRED_TOOLING_FILES = [
|
|
@@ -46652,7 +46652,7 @@ function assertKnownFlags(args) {
|
|
|
46652
46652
|
init_status();
|
|
46653
46653
|
init_workspace();
|
|
46654
46654
|
init_ui();
|
|
46655
|
-
var DEFAULT_API_BASE_URL = "
|
|
46655
|
+
var DEFAULT_API_BASE_URL = "https://app.neocompose.com";
|
|
46656
46656
|
function profileFlag(args) {
|
|
46657
46657
|
const value = stringFlag(args, "profile");
|
|
46658
46658
|
if (value === null) return null;
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neocompose/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Neo Compose schema-as-code CLI with compiler-backed C# authoring and bidirectional sync.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"package:check": "node schema-contract/check-package.mjs",
|
|
27
27
|
"test:package": "npm run build && npm run package:check",
|
|
28
28
|
"prepublishOnly": "npm run build:prod && npm run package:check",
|
|
29
|
-
"publish:npm": "set -a && . ./.env.prod && set +a && npm publish"
|
|
29
|
+
"publish:npm": "npm run prepublishOnly && set -a && . ./.env.prod && set +a && npm publish --ignore-scripts"
|
|
30
30
|
},
|
|
31
31
|
"engines": {
|
|
32
32
|
"node": ">=20.0.0"
|