ras-stack 0.3.0 → 0.3.5
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/README.md +4 -4
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -159,7 +159,7 @@ The JavaScript setup action reads the Node version from `engines.node` and the p
|
|
|
159
159
|
```yaml
|
|
160
160
|
steps:
|
|
161
161
|
- uses: actions/checkout@v7
|
|
162
|
-
- uses: richardsolomou/ras-stack/actions/setup-js@v0.
|
|
162
|
+
- uses: richardsolomou/ras-stack/actions/setup-js@v0.3.0
|
|
163
163
|
- run: pnpm check
|
|
164
164
|
```
|
|
165
165
|
|
|
@@ -179,7 +179,7 @@ release:
|
|
|
179
179
|
needs: [check]
|
|
180
180
|
permissions:
|
|
181
181
|
contents: write
|
|
182
|
-
uses: richardsolomou/ras-stack/.github/workflows/release-changesets.yml@v0.
|
|
182
|
+
uses: richardsolomou/ras-stack/.github/workflows/release-changesets.yml@v0.3.0
|
|
183
183
|
secrets: inherit
|
|
184
184
|
```
|
|
185
185
|
|
|
@@ -192,8 +192,8 @@ Pin actions and reusable workflows to a release tag and let Dependabot propose u
|
|
|
192
192
|
Development requires Node 24 and pnpm 11.15.0.
|
|
193
193
|
|
|
194
194
|
```sh
|
|
195
|
-
|
|
196
|
-
|
|
195
|
+
just install
|
|
196
|
+
just check
|
|
197
197
|
```
|
|
198
198
|
|
|
199
199
|
See [CONTRIBUTING.md](CONTRIBUTING.md) for release instructions. Report vulnerabilities privately as described in [SECURITY.md](SECURITY.md).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ras-stack",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.5",
|
|
4
4
|
"description": "Composable full-stack primitives shared across Richard Solomou's applications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"authentication",
|
|
@@ -59,9 +59,11 @@
|
|
|
59
59
|
"format": "oxfmt --write .",
|
|
60
60
|
"format:check": "oxfmt --check .",
|
|
61
61
|
"test": "vitest run",
|
|
62
|
-
"check": "pnpm format:check && pnpm lint && pnpm config:check && pnpm typecheck && pnpm test && pnpm build"
|
|
62
|
+
"check": "pnpm format:check && pnpm lint && pnpm config:check && pnpm typecheck && pnpm test && pnpm build",
|
|
63
|
+
"version-packages": "changeset version"
|
|
63
64
|
},
|
|
64
65
|
"devDependencies": {
|
|
66
|
+
"@changesets/cli": "^2.31.1",
|
|
65
67
|
"@types/node": "^26.0.0",
|
|
66
68
|
"@types/nodemailer": "^8.0.1",
|
|
67
69
|
"nodemailer": "^9.0.3",
|