@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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@quilted/create",
3
3
  "type": "module",
4
- "version": "0.2.23",
4
+ "version": "0.2.25",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -1,5 +1,5 @@
1
1
  import type {RenderableProps} from 'preact';
2
- import Env from '@quilted/quilt/env';
2
+ import Env from 'quilt:module/env';
3
3
  import {Title, Favicon, useBrowserRequest} from '@quilted/quilt/browser';
4
4
  import {
5
5
  CacheControl,
@@ -1,4 +1,5 @@
1
1
  import type {RenderableProps} from 'preact';
2
+ import Env from 'quilt:module/env';
2
3
  import {Title, Favicon, useBrowserRequest} from '@quilted/quilt/browser';
3
4
  import {
4
5
  CacheControl,
@@ -1,4 +1,5 @@
1
1
  import type {RenderableProps} from 'preact';
2
+ import Env from 'quilt:module/env';
2
3
  import {Title, Favicon, useBrowserRequest} from '@quilted/quilt/browser';
3
4
  import {
4
5
  CacheControl,
@@ -17,7 +17,7 @@ jobs:
17
17
  name: Lint ๐Ÿ’…
18
18
  runs-on: ubuntu-latest
19
19
  steps:
20
- - uses: actions/checkout@v3
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@v3
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@v3
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@v3
45
+ - uses: actions/checkout@v4
46
46
  - uses: ./.github/workflows/actions/prepare
47
47
  - run: pnpm run build