@warlock.js/cascade 4.2.0 → 4.2.2

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 CHANGED
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## 4.2.1
10
+
11
+ ### Fixed
12
+
13
+ - Ship the `bin` folder so the `cascade` CLI works from the published package — it was omitted from the 4.2.0 build.
14
+
9
15
  ## 4.2.0
10
16
 
11
17
  ### Changed
package/bin/cascade.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ import "../esm/cli.mjs";
package/bin/cascadejs ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+
3
+ import "../cjs/cli.js";
package/package.json CHANGED
@@ -27,9 +27,9 @@
27
27
  "@mongez/events": "^2.2.6",
28
28
  "@mongez/reinforcements": "^3.2.0",
29
29
  "@mongez/supportive-is": "^2.1.3",
30
- "@warlock.js/context": "4.2.0",
31
- "@warlock.js/logger": "4.2.0",
32
- "@warlock.js/seal": "4.2.0",
30
+ "@warlock.js/context": "4.2.2",
31
+ "@warlock.js/logger": "4.2.2",
32
+ "@warlock.js/seal": "4.2.2",
33
33
  "citty": "^0.2.2",
34
34
  "fast-glob": "^3.3.3"
35
35
  },
@@ -40,7 +40,7 @@
40
40
  "bin": {
41
41
  "cascade": "bin/cascade.js"
42
42
  },
43
- "version": "4.2.0",
43
+ "version": "4.2.2",
44
44
  "main": "./cjs/index.cjs",
45
45
  "module": "./esm/index.mjs",
46
46
  "types": "./esm/index.d.mts",