@swissjs/swite 0.3.4 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +13 -23
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.3.5
4
+
5
+ ### Patch Changes
6
+
7
+ - deps: bump @swissjs/core 0.1.10 → 0.1.11 (browser hotfix — guards `process.env` in reconciliation to prevent ReferenceError crash in browser environments)
8
+
3
9
  ## 0.3.4
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swissjs/swite",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "SWITE - SWISS Development Server (Vite replacement)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,18 +8,8 @@
8
8
  "bin": {
9
9
  "swite": "dist/cli.js"
10
10
  },
11
- "scripts": {
12
- "build": "tsc -b",
13
- "dev": "tsc -b --watch",
14
- "clean": "rm -rf dist node_modules && rm -f tsconfig.tsbuildinfo",
15
- "generate-import-map": "tsx src/internal/generate-import-map-cli.ts",
16
- "test": "node --import tsx --test __tests__/import-rewriter-bug.test.ts",
17
- "changeset": "changeset",
18
- "release:version": "changeset version",
19
- "release:publish": "changeset publish"
20
- },
21
11
  "dependencies": {
22
- "@swissjs/core": "0.1.10",
12
+ "@swissjs/core": "0.1.11",
23
13
  "@swissjs/compiler": "0.1.5",
24
14
  "@swissjs/plugin-file-router": "1.0.2",
25
15
  "chalk": "^5.3.0",
@@ -42,18 +32,18 @@
42
32
  "access": "public"
43
33
  },
44
34
  "license": "MIT",
45
- "pnpm": {
46
- "onlyBuiltDependencies": [
47
- "esbuild"
48
- ],
49
- "overrides": {
50
- "path-to-regexp": "^0.1.13",
51
- "picomatch": "^2.3.2",
52
- "qs": "^6.11.0"
53
- }
54
- },
55
35
  "repository": {
56
36
  "type": "git",
57
37
  "url": "git+https://github.com/kibologic/swite.git"
38
+ },
39
+ "scripts": {
40
+ "build": "tsc -b",
41
+ "dev": "tsc -b --watch",
42
+ "clean": "rm -rf dist node_modules && rm -f tsconfig.tsbuildinfo",
43
+ "generate-import-map": "tsx src/internal/generate-import-map-cli.ts",
44
+ "test": "node --import tsx --test __tests__/import-rewriter-bug.test.ts",
45
+ "changeset": "changeset",
46
+ "release:version": "changeset version",
47
+ "release:publish": "changeset publish"
58
48
  }
59
- }
49
+ }