@spencer-kit/coder-studio 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 +7 -0
- package/dist/esm/bin.mjs +12749 -11945
- package/dist/esm/bin.mjs.map +4 -4
- package/dist/esm/server-runner.mjs +12706 -11893
- package/dist/esm/server-runner.mjs.map +4 -4
- package/dist/esm/update-worker.mjs +156 -0
- package/dist/esm/update-worker.mjs.map +7 -0
- package/dist/web/assets/index-BkUU2b7M.css +1 -0
- package/dist/web/assets/index-g7vn9KmI.js +111 -0
- package/dist/web/assets/index-g7vn9KmI.js.map +1 -0
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/src/auth-control.test.ts +3 -3
- package/src/auth-control.ts +6 -6
- package/src/bin.test.ts +24 -12
- package/src/cli.ts +7 -7
- package/src/config-store.test.ts +57 -14
- package/src/config-store.ts +25 -15
- package/src/package-manifest.ts +5 -0
- package/src/parse-args.ts +5 -4
- package/src/server-runner.test.ts +36 -5
- package/src/server-runner.ts +8 -7
- package/src/update-runtime.test.ts +13 -0
- package/src/update-runtime.ts +44 -0
- package/src/update-worker.test.ts +99 -0
- package/src/update-worker.ts +213 -0
- package/dist/web/assets/index-CNoLfuZU.js +0 -112
- package/dist/web/assets/index-CNoLfuZU.js.map +0 -1
- package/dist/web/assets/index-cMGhBE_V.css +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#52](https://github.com/spencerkit/coder-studio/pull/52) [`7a9ae25`](https://github.com/spencerkit/coder-studio/commit/7a9ae25841511d8056231add1d37a8e2bae7ca1d) Thanks [@pallyoung](https://github.com/pallyoung)! - Release the CI pipeline repair by removing unused server symbols that broke the
|
|
8
|
+
Windows package build and by adding the standalone server build to `ci:build`.
|
|
9
|
+
|
|
3
10
|
## 0.4.0
|
|
4
11
|
|
|
5
12
|
### Minor Changes
|