@quilted/create 0.2.23 โ 0.2.25
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
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @quilted/create
|
|
2
2
|
|
|
3
|
+
## 0.2.25
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`fb45f13`](https://github.com/lemonmade/quilt/commit/fb45f13ef3d4be82f7edde567ed3247931957701) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix usage of magic "env" module
|
|
8
|
+
|
|
9
|
+
## 0.2.24
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`473928a`](https://github.com/lemonmade/quilt/commit/473928a44115f8c27521d66cfe68cc5e213c5a54) Thanks [@lemonmade](https://github.com/lemonmade)! - Update development dependencies
|
|
14
|
+
|
|
3
15
|
## 0.2.23
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@ jobs:
|
|
|
17
17
|
name: Lint ๐
|
|
18
18
|
runs-on: ubuntu-latest
|
|
19
19
|
steps:
|
|
20
|
-
- uses: actions/checkout@
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
21
|
- uses: ./.github/workflows/actions/prepare
|
|
22
22
|
- run: pnpm run lint
|
|
23
23
|
|
|
@@ -25,7 +25,7 @@ jobs:
|
|
|
25
25
|
name: Type check ๐งฎ
|
|
26
26
|
runs-on: ubuntu-latest
|
|
27
27
|
steps:
|
|
28
|
-
- uses: actions/checkout@
|
|
28
|
+
- uses: actions/checkout@v4
|
|
29
29
|
- uses: ./.github/workflows/actions/prepare
|
|
30
30
|
- run: pnpm run type-check
|
|
31
31
|
|
|
@@ -33,7 +33,7 @@ jobs:
|
|
|
33
33
|
name: Unit tests ๐งช
|
|
34
34
|
runs-on: ubuntu-latest
|
|
35
35
|
steps:
|
|
36
|
-
- uses: actions/checkout@
|
|
36
|
+
- uses: actions/checkout@v4
|
|
37
37
|
- uses: ./.github/workflows/actions/prepare
|
|
38
38
|
- run: pnpm run test
|
|
39
39
|
|
|
@@ -42,6 +42,6 @@ jobs:
|
|
|
42
42
|
if: ${{ inputs.build || github.event_name == 'push' }}
|
|
43
43
|
runs-on: ubuntu-latest
|
|
44
44
|
steps:
|
|
45
|
-
- uses: actions/checkout@
|
|
45
|
+
- uses: actions/checkout@v4
|
|
46
46
|
- uses: ./.github/workflows/actions/prepare
|
|
47
47
|
- run: pnpm run build
|