Skip to content

Commit 64119d3

Browse files
chore(release): version package (#118)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1e65f0f commit 64119d3

File tree

4 files changed

+12
-26
lines changed

4 files changed

+12
-26
lines changed

.changeset/big-oranges-read.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# std
22

3+
## 5.3.2
4+
### Patch Changes
5+
6+
7+
- Mark all test files with role: 'test' so they are only installed when requested ([#117](https://github.com/ieedan/std/pull/117))
8+
39
## 5.3.1
410
### Patch Changes
511

jsrepo.config.ts

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,7 @@ export default defineConfig({
9090
{
9191
name: 'pad',
9292
type: 'util',
93-
files: [
94-
{ path: 'src/ts/pad.ts' },
95-
{ path: 'src/ts/pad.test.ts', role: 'test' },
96-
],
93+
files: [{ path: 'src/ts/pad.ts' }, { path: 'src/ts/pad.test.ts', role: 'test' }],
9794
},
9895
{
9996
name: 'perishable-list',
@@ -114,10 +111,7 @@ export default defineConfig({
114111
{
115112
name: 'rand',
116113
type: 'util',
117-
files: [
118-
{ path: 'src/ts/rand.ts' },
119-
{ path: 'src/ts/rand.test.ts', role: 'test' },
120-
],
114+
files: [{ path: 'src/ts/rand.ts' }, { path: 'src/ts/rand.test.ts', role: 'test' }],
121115
},
122116
{
123117
name: 'sleep',
@@ -146,10 +140,7 @@ export default defineConfig({
146140
{
147141
name: 'time',
148142
type: 'util',
149-
files: [
150-
{ path: 'src/ts/time.ts' },
151-
{ path: 'src/ts/time.test.ts', role: 'test' },
152-
],
143+
files: [{ path: 'src/ts/time.ts' }, { path: 'src/ts/time.test.ts', role: 'test' }],
153144
},
154145
{
155146
name: 'truncate',
@@ -167,10 +158,7 @@ export default defineConfig({
167158
{
168159
name: 'url',
169160
type: 'util',
170-
files: [
171-
{ path: 'src/ts/url.ts' },
172-
{ path: 'src/ts/url.test.ts', role: 'test' },
173-
],
161+
files: [{ path: 'src/ts/url.ts' }, { path: 'src/ts/url.test.ts', role: 'test' }],
174162
},
175163
{
176164
name: 'Cursor Rule',

package.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "std",
3-
"version": "5.3.1",
3+
"version": "5.3.2",
44
"packageManager": "[email protected]",
55
"type": "module",
66
"scripts": {
@@ -30,9 +30,6 @@
3030
"typedoc-material-theme": "^1.4.1"
3131
},
3232
"pnpm": {
33-
"onlyBuiltDependencies": [
34-
"@biomejs/biome",
35-
"esbuild"
36-
]
33+
"onlyBuiltDependencies": ["@biomejs/biome", "esbuild"]
3734
}
3835
}

0 commit comments

Comments
 (0)