@enfocussw/switch-scripting-context 25.11.0-beta.8 → 25.11.0-beta.9
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 +5 -0
- package/README.md +1 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,16 @@ All notable changes to this package are documented here. Format follows
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [25.11.0-beta.9] - 2026-08-26
|
|
9
|
+
|
|
8
10
|
### Added
|
|
9
11
|
- `package.json` now declares `"main": "dist/init.js"`. Deliberately no `"exports"` field, so
|
|
10
12
|
`switch-scripting-context/package.json` also stays reachable for consumers that need to read the
|
|
11
13
|
package's own version (e.g. to compare against a script's target Switch version).
|
|
12
14
|
|
|
15
|
+
### Changed
|
|
16
|
+
- Package now publishes to the public npm registry instead of GitHub Packages.
|
|
17
|
+
|
|
13
18
|
## [25.11.0-beta.8] - 2026-08-25
|
|
14
19
|
|
|
15
20
|
### Removed
|
package/README.md
CHANGED
|
@@ -8,17 +8,7 @@ See [CHANGELOG.md](CHANGELOG.md) for what's changed between versions.
|
|
|
8
8
|
|
|
9
9
|
## Usage
|
|
10
10
|
|
|
11
|
-
|
|
12
|
-
> tarball supplied directly; the npm commands below apply once it is published.
|
|
13
|
-
|
|
14
|
-
Install the tarball you were given, then run `init` in any Switch scripting project:
|
|
15
|
-
|
|
16
|
-
```bash
|
|
17
|
-
npm install --save-dev ./enfocussw-switch-scripting-context-25.11.0-beta.1.tgz
|
|
18
|
-
npx switch-scripting-context init
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
After publication, install straight from npm instead:
|
|
11
|
+
Run `init` in any Switch scripting project:
|
|
22
12
|
|
|
23
13
|
```bash
|
|
24
14
|
npx @enfocussw/switch-scripting-context init
|
|
@@ -52,8 +42,6 @@ The package version tracks the Switch release its docs describe:
|
|
|
52
42
|
|
|
53
43
|
Beta builds append a prerelease suffix — `25.11.0-beta.1`. These sort *below* `25.11.0`,
|
|
54
44
|
so the beta line precedes GA and leaves `25.11.0` free for the first published release.
|
|
55
|
-
During the beta these are distributed as tarballs rather than published, so the suffix is
|
|
56
|
-
purely a label telling testers which build they have.
|
|
57
45
|
|
|
58
46
|
## What it does
|
|
59
47
|
|