@nebutra/play-marketplace 0.1.2 → 0.1.4
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 +28 -0
- package/LICENSE +21 -676
- package/package.json +21 -11
- package/.nebutra/debug/content-store.jsonl +0 -4
- package/.nebutra/debug/event-log.jsonl +0 -2
- package/.nebutra/debug/play-marketplace.jsonl +0 -3
- package/.turbo/turbo-build.log +0 -22
- package/.turbo/turbo-test.log +0 -15
- package/.turbo/turbo-typecheck.log +0 -4
- package/examples/doctor.ts +0 -11
- package/examples/paid-gate.ts +0 -31
- package/examples/quickstart.ts +0 -33
- package/plays/publish_play/SKILL.md +0 -24
- package/src/cli.ts +0 -28
- package/src/index.test.ts +0 -84
- package/src/index.ts +0 -279
- package/tsconfig.json +0 -9
- package/tsup.config.ts +0 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @nebutra/play-marketplace
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Ship the MIT LICENSE file these packages have always declared but never included.
|
|
8
|
+
|
|
9
|
+
Every one of these declares `"license": "MIT"` in its manifest, and npm shows
|
|
10
|
+
that on the registry page — but the tarball carried no licence text at all.
|
|
11
|
+
MIT's own terms require the notice to accompany "all copies or substantial
|
|
12
|
+
portions of the Software", so a consumer vendoring one of these packages had
|
|
13
|
+
nothing to comply with.
|
|
14
|
+
|
|
15
|
+
No code changes. This is the licence text only, published so the tarballs
|
|
16
|
+
match what the manifests have been claiming.
|
|
17
|
+
|
|
18
|
+
`tests/architecture/release-surface.test.ts` now asserts the LICENSE _file_
|
|
19
|
+
exists and is MIT, not just the manifest _field_ — the field-only check is how
|
|
20
|
+
this went unnoticed, and is also how `create-sailor` shipped the full AGPL-3.0
|
|
21
|
+
text under an MIT declaration for its entire published history.
|
|
22
|
+
|
|
23
|
+
- Updated dependencies []:
|
|
24
|
+
- @nebutra/content-store@0.1.2
|
|
25
|
+
- @nebutra/event-log@0.1.2
|
|
26
|
+
- @nebutra/generation-context@0.1.2
|
|
27
|
+
- @nebutra/play-loader@0.1.2
|
|
28
|
+
- @nebutra/capability-kit@0.2.2
|
|
29
|
+
- @nebutra/errors@0.1.2
|
|
30
|
+
|
|
3
31
|
## 0.1.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|