@stlite/desktop 0.99.1 → 0.99.2
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,11 @@
|
|
|
1
1
|
# @stlite/desktop
|
|
2
2
|
|
|
3
|
+
## 0.99.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1999](https://github.com/whitphx/stlite/pull/1999) [`07500cc`](https://github.com/whitphx/stlite/commit/07500cc5e8d054ad0fc9055d7680583e14539f7f) Thanks [@whitphx](https://github.com/whitphx)! - Replace ESLint and Prettier with Oxc (oxlint + oxfmt) for linting and formatting. Dev tooling only — no runtime or API change.
|
|
8
|
+
|
|
3
9
|
## 0.99.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,28 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stlite/desktop",
|
|
3
|
-
"version": "0.99.
|
|
4
|
-
"
|
|
3
|
+
"version": "0.99.2",
|
|
4
|
+
"bugs": {
|
|
5
|
+
"url": "https://github.com/whitphx/stlite/issues"
|
|
6
|
+
},
|
|
5
7
|
"license": "Apache-2.0",
|
|
6
8
|
"repository": {
|
|
7
9
|
"type": "git",
|
|
8
10
|
"url": "https://github.com/whitphx/stlite.git",
|
|
9
11
|
"directory": "packages/desktop"
|
|
10
12
|
},
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
},
|
|
14
|
-
"engines": {
|
|
15
|
-
"node": ">=18"
|
|
13
|
+
"bin": {
|
|
14
|
+
"dump-stlite-desktop-artifacts": "./bin/dump_artifacts.js"
|
|
16
15
|
},
|
|
17
|
-
"main": "./build/electron/main.js",
|
|
18
16
|
"files": [
|
|
19
17
|
"build",
|
|
20
18
|
"bin/*.js",
|
|
21
19
|
"wheels"
|
|
22
20
|
],
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
},
|
|
21
|
+
"type": "module",
|
|
22
|
+
"main": "./build/electron/main.js",
|
|
26
23
|
"scripts": {
|
|
27
24
|
"start:web": "vite",
|
|
28
25
|
"//": "We could not make tree shaking on build/pypi work somehow... so delete the dir manually here as workaround X(",
|
|
@@ -42,20 +39,11 @@
|
|
|
42
39
|
"dump:dev": "cross-env NODE_ENV=development tsx ./bin-src/dump_artifacts/index.ts",
|
|
43
40
|
"dump": "dump-stlite-desktop-artifacts",
|
|
44
41
|
"serve": "cross-env NODE_ENV=production electron .",
|
|
45
|
-
"fix:
|
|
46
|
-
"fix:
|
|
47
|
-
"check:
|
|
48
|
-
"check:
|
|
49
|
-
},
|
|
50
|
-
"browserslist": {
|
|
51
|
-
"production": [
|
|
52
|
-
"last 1 electron version"
|
|
53
|
-
],
|
|
54
|
-
"development": [
|
|
55
|
-
"last 1 electron version"
|
|
56
|
-
]
|
|
42
|
+
"fix:lint": "oxlint --fix src electron bin-src",
|
|
43
|
+
"fix:format": "oxfmt .",
|
|
44
|
+
"check:lint": "oxlint src electron bin-src",
|
|
45
|
+
"check:format": "oxfmt --check ."
|
|
57
46
|
},
|
|
58
|
-
"//": "The packages not bundled with bin/dump_artifacts.js must be specified here as the runtime dependencies. See `scripts/build_bin.js` for the details.",
|
|
59
47
|
"dependencies": {
|
|
60
48
|
"fs-extra": "^11.2.0",
|
|
61
49
|
"pyodide": "0.29.3",
|
|
@@ -63,11 +51,10 @@
|
|
|
63
51
|
},
|
|
64
52
|
"devDependencies": {
|
|
65
53
|
"@emotion/babel-plugin": "^11.13.5",
|
|
66
|
-
"@
|
|
67
|
-
"@stlite/
|
|
68
|
-
"@stlite/
|
|
69
|
-
"@stlite/
|
|
70
|
-
"@stlite/tooling": "^0.90.0",
|
|
54
|
+
"@stlite/common": "^0.90.3",
|
|
55
|
+
"@stlite/kernel": "^0.102.2",
|
|
56
|
+
"@stlite/react": "^1.6.2",
|
|
57
|
+
"@stlite/tooling": "^0.90.1",
|
|
71
58
|
"@types/react": "^18.2.0",
|
|
72
59
|
"@types/react-dom": "^18.2.0",
|
|
73
60
|
"@types/yargs": "^17.0.35",
|
|
@@ -77,14 +64,10 @@
|
|
|
77
64
|
"electron": "34.3.0",
|
|
78
65
|
"electron-reload": "^2.0.0-alpha.1",
|
|
79
66
|
"esbuild": "^0.27.1",
|
|
80
|
-
"eslint": "^9.39.2",
|
|
81
|
-
"eslint-config-prettier": "^10.1.8",
|
|
82
|
-
"eslint-plugin-prettier": "^5.5.4",
|
|
83
|
-
"eslint-plugin-react": "^7.37.5",
|
|
84
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
85
67
|
"glob": "^13.0.6",
|
|
86
|
-
"node-html-parser": "^7.0
|
|
87
|
-
"
|
|
68
|
+
"node-html-parser": "^7.1.0",
|
|
69
|
+
"oxfmt": "^0.45.0",
|
|
70
|
+
"oxlint": "^1.60.0",
|
|
88
71
|
"react": "^18.2.0",
|
|
89
72
|
"react-dom": "^18.2.0",
|
|
90
73
|
"rimraf": "^6.1.2",
|
|
@@ -94,12 +77,23 @@
|
|
|
94
77
|
"ts-node": "^10.9.1",
|
|
95
78
|
"tsx": "^4.19.2",
|
|
96
79
|
"typescript": "^5.9.3",
|
|
97
|
-
"typescript-eslint": "^8.46.2",
|
|
98
80
|
"vite": "^7.1.5",
|
|
99
81
|
"vitest": "^4.1.0",
|
|
100
82
|
"wait-on": "^8.0.1",
|
|
101
83
|
"winston": "^3.13.0"
|
|
102
84
|
},
|
|
85
|
+
"browserslist": {
|
|
86
|
+
"production": [
|
|
87
|
+
"last 1 electron version"
|
|
88
|
+
],
|
|
89
|
+
"development": [
|
|
90
|
+
"last 1 electron version"
|
|
91
|
+
]
|
|
92
|
+
},
|
|
93
|
+
"engines": {
|
|
94
|
+
"node": ">=18"
|
|
95
|
+
},
|
|
96
|
+
"//": "The packages not bundled with bin/dump_artifacts.js must be specified here as the runtime dependencies. See `scripts/build_bin.js` for the details.",
|
|
103
97
|
"///": "build.productName is necessary because electron-builder uses the package name for its purpose but the scoped name including '@' makes a problem: https://github.com/electron-userland/electron-builder/issues/3230",
|
|
104
98
|
"build": {
|
|
105
99
|
"appId": "your.id",
|
|
Binary file
|