@pitlane/dev 0.5.0 → 0.5.1
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 +15 -0
- package/package.json +61 -63
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @pitlane/dev
|
|
2
2
|
|
|
3
|
+
## 0.5.1
|
|
4
|
+
|
|
5
|
+
Fixes an unusable 0.5.0 on npm.
|
|
6
|
+
|
|
7
|
+
- 0.5.0 was published with `"@pitlane/crawler": "workspace:^"` in its
|
|
8
|
+
dependencies, so every install failed with `EUNSUPPORTEDPROTOCOL` on npm and
|
|
9
|
+
`ERR_PNPM_WORKSPACE_PKG_NOT_FOUND` on pnpm. The release workflow packed with
|
|
10
|
+
`npm publish`, which has no idea what pnpm's `workspace:` protocol means and
|
|
11
|
+
ships it verbatim. It now packs with pnpm, which rewrites the range to the
|
|
12
|
+
version it resolved to, and fails the job if any `workspace:` specifier
|
|
13
|
+
survives into the tarball. Nothing about the code changed; 0.5.0 is
|
|
14
|
+
deprecated and this is the same release with a manifest that installs.
|
|
15
|
+
- Latent until now: `@pitlane/crawler` is the first workspace dependency any
|
|
16
|
+
published Pitlane package has had.
|
|
17
|
+
|
|
3
18
|
## 0.5.0
|
|
4
19
|
|
|
5
20
|
Build-time prerendering.
|
package/package.json
CHANGED
|
@@ -1,67 +1,65 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
2
|
+
"name": "@pitlane/dev",
|
|
3
|
+
"version": "0.5.1",
|
|
4
|
+
"description": "remix() — the Remix 3 Vite plugin: build orchestration, clientEntry() hydration transform, dev server with component and server-data HMR, SPA mode, build-time prerendering, and preview for any Vite or Vite+ project.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"pitlane",
|
|
7
|
+
"remix",
|
|
8
|
+
"vite",
|
|
9
|
+
"vite-plugin"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://pitlane.tools/package/dev/",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/pitlane-tools/pitlane/issues"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"author": "Mark Malstrom <mark@malstrom.me>",
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/pitlane-tools/pitlane.git",
|
|
20
|
+
"directory": "packages/dev"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist",
|
|
24
|
+
"CHANGELOG.md"
|
|
25
|
+
],
|
|
26
|
+
"type": "module",
|
|
27
|
+
"types": "./dist/index.d.mts",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.mts",
|
|
31
|
+
"import": "./dist/index.mjs"
|
|
14
32
|
},
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/pitlane-tools/pitlane.git",
|
|
20
|
-
"directory": "packages/dev"
|
|
33
|
+
"./runtime": {
|
|
34
|
+
"types": "./dist/runtime.d.mts",
|
|
35
|
+
"import": "./dist/runtime.mjs"
|
|
21
36
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
"CHANGELOG.md"
|
|
25
|
-
],
|
|
26
|
-
"type": "module",
|
|
27
|
-
"types": "./dist/index.d.mts",
|
|
28
|
-
"exports": {
|
|
29
|
-
".": {
|
|
30
|
-
"types": "./dist/index.d.mts",
|
|
31
|
-
"import": "./dist/index.mjs"
|
|
32
|
-
},
|
|
33
|
-
"./runtime": {
|
|
34
|
-
"types": "./dist/runtime.d.mts",
|
|
35
|
-
"import": "./dist/runtime.mjs"
|
|
36
|
-
},
|
|
37
|
-
"./assets": {
|
|
38
|
-
"types": "./dist/assets.d.mts"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"prepublishOnly": "vp run build"
|
|
43
|
-
},
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@hiogawa/vite-plugin-fullstack": "0.0.11",
|
|
46
|
-
"@pitlane/crawler": "workspace:^",
|
|
47
|
-
"magic-string": "^0.30.21",
|
|
48
|
-
"oxc-parser": "^0.141.0"
|
|
49
|
-
},
|
|
50
|
-
"devDependencies": {
|
|
51
|
-
"@cloudflare/vite-plugin": "^1.31.0",
|
|
52
|
-
"@types/node": "^25.5.0",
|
|
53
|
-
"playwright": "1.61.1",
|
|
54
|
-
"remix": "3.0.0-beta.10",
|
|
55
|
-
"typescript": "^7.0.2",
|
|
56
|
-
"vite": "^8.1.5",
|
|
57
|
-
"vite-plus": "^0.2.6",
|
|
58
|
-
"wrangler": "^4.114.0"
|
|
59
|
-
},
|
|
60
|
-
"peerDependencies": {
|
|
61
|
-
"remix": "^3.0.0-beta.10",
|
|
62
|
-
"vite": ">=7.0.0"
|
|
63
|
-
},
|
|
64
|
-
"engines": {
|
|
65
|
-
"node": "^20.19.0 || >=22.12.0"
|
|
37
|
+
"./assets": {
|
|
38
|
+
"types": "./dist/assets.d.mts"
|
|
66
39
|
}
|
|
67
|
-
}
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@hiogawa/vite-plugin-fullstack": "0.0.11",
|
|
43
|
+
"magic-string": "^0.30.21",
|
|
44
|
+
"oxc-parser": "^0.141.0",
|
|
45
|
+
"@pitlane/crawler": "^0.1.0"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@cloudflare/vite-plugin": "^1.31.0",
|
|
49
|
+
"@types/node": "^25.5.0",
|
|
50
|
+
"playwright": "1.61.1",
|
|
51
|
+
"remix": "3.0.0-beta.10",
|
|
52
|
+
"typescript": "^7.0.2",
|
|
53
|
+
"vite": "^8.1.5",
|
|
54
|
+
"vite-plus": "^0.2.6",
|
|
55
|
+
"wrangler": "^4.114.0"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"remix": "^3.0.0-beta.10",
|
|
59
|
+
"vite": ">=7.0.0"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": "^20.19.0 || >=22.12.0"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {}
|
|
65
|
+
}
|