skaile-cli 0.17.0 → 0.18.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.18.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`ecdc900`](https://github.com/skaile-ai/workspaces/commit/ecdc900790773d93b3f18983b785acea15c600db)]:
8
+ - @skaile/workspaces@0.18.0
9
+
10
+ ## 0.17.1
11
+
12
+ ### Patch Changes
13
+
14
+ - [#39](https://github.com/skaile-ai/workspaces/pull/39) [`31b3037`](https://github.com/skaile-ai/workspaces/commit/31b30374e17043d099a30aac8e3ac08fca6c94e0) Thanks [@peteralbert](https://github.com/peteralbert)! - fix(release): rewrite `workspace:*` ranges before `changeset publish`
15
+
16
+ `@changesets/cli` leaves `workspace:*` in `package.json` and relies on the
17
+ underlying publisher to rewrite it. `npm publish` (which `changeset publish`
18
+ shells out to) does not, so `workspace:*` was leaking into the tarballs of
19
+ `skaile-cli`, `@skaile/workspace-bridge-react`, and
20
+ `@skaile/workspace-bridge-vue` published at `0.16.0`. Installing them failed
21
+ with `EUNSUPPORTEDPROTOCOL Unsupported URL Type "workspace:"`.
22
+
23
+ The new `scripts/release.mjs` wrapper resolves each `workspace:` range to a
24
+ concrete semver range before invoking `changeset publish`, then restores the
25
+ originals afterward. This patch republishes the three affected packages with
26
+ the correct deps; `@skaile/workspaces` itself was unaffected but bumps in
27
+ lockstep with the fixed group.
28
+
29
+ - Updated dependencies [[`31b3037`](https://github.com/skaile-ai/workspaces/commit/31b30374e17043d099a30aac8e3ac08fca6c94e0), [`a820dfa`](https://github.com/skaile-ai/workspaces/commit/a820dfaf15fda0b38315f30bf24f34d1e81832b2)]:
30
+ - @skaile/workspaces@0.17.1
31
+
3
32
  ## 0.17.0
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skaile-cli",
3
- "version": "0.17.0",
3
+ "version": "0.18.0",
4
4
  "description": "Run the Skaile CLI via `npx skaile-cli` — thin wrapper around @skaile/workspaces",
5
5
  "type": "module",
6
6
  "bin": {
@@ -25,7 +25,7 @@
25
25
  "asset-manager"
26
26
  ],
27
27
  "dependencies": {
28
- "@skaile/workspaces": "workspace:*"
28
+ "@skaile/workspaces": "^0.18.0"
29
29
  },
30
30
  "publishConfig": {
31
31
  "access": "public"