Skip to content

Commit 7a6e13d

Browse files
committed
add screenshot, minor cleanup
1 parent 2f5fd35 commit 7a6e13d

File tree

10 files changed

+2306
-1712
lines changed

10 files changed

+2306
-1712
lines changed

Diff for: .eslintrc

-2
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,11 @@
4949
"@typescript-eslint/no-empty-function": "off",
5050
"@typescript-eslint/no-explicit-any": "off",
5151
"@typescript-eslint/no-extra-non-null-assertion": "warn",
52-
"@typescript-eslint/no-implicit-any-catch": "warn",
5352
"@typescript-eslint/no-inferrable-types": "off",
5453
"@typescript-eslint/no-misused-new": "warn",
5554
"@typescript-eslint/no-namespace": "warn",
5655
"@typescript-eslint/no-non-null-asserted-optional-chain": "warn",
5756
"@typescript-eslint/no-non-null-assertion": "warn",
58-
"@typescript-eslint/no-parameter-properties": "warn",
5957
"@typescript-eslint/no-this-alias": "warn",
6058
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "warn",
6159
"@typescript-eslint/no-unnecessary-condition": "off",

Diff for: README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# WinDOMs97
2+
3+
![Desktop screenshot](image.png)

Diff for: image.png

123 KB
Loading

Diff for: package.json

+22-20
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
22
"dependencies": {
3-
"modern-normalize": "1.1.0",
4-
"obset": "4.0.0",
5-
"react": "17.0.2",
6-
"react-dom": "17.0.2",
7-
"zustand": "3.6.7"
3+
"modern-normalize": "2.0.0",
4+
"obset": "6.1.2",
5+
"react": "18.2.0",
6+
"react-dom": "18.2.0",
7+
"zustand": "4.4.6"
88
},
99
"devDependencies": {
1010
"@snowpack/plugin-react-refresh": "2.5.0",
1111
"@snowpack/plugin-typescript": "1.2.1",
12-
"@types/node": "17.0.0",
13-
"@types/react": "17.0.37",
14-
"@types/react-dom": "17.0.11",
15-
"@types/snowpack-env": "2.3.4",
16-
"@typescript-eslint/eslint-plugin": "5.7.0",
17-
"@typescript-eslint/parser": "5.7.0",
18-
"eslint": "8.5.0",
19-
"eslint-plugin-react": "7.27.1",
20-
"eslint-plugin-react-hooks": "4.3.0",
21-
"eslint-plugin-unicorn": "39.0.0",
22-
"prettier": "2.5.1",
23-
"prettier-plugin-jsdoc": "0.3.30",
24-
"prettier-plugin-organize-imports": "2.3.4",
12+
"@types/node": "20.10.0",
13+
"@types/react": "18.2.38",
14+
"@types/react-dom": "18.2.17",
15+
"@types/snowpack-env": "2.3.6",
16+
"@typescript-eslint/eslint-plugin": "6.12.0",
17+
"@typescript-eslint/parser": "6.12.0",
18+
"eslint": "8.54.0",
19+
"eslint-plugin-react": "7.33.2",
20+
"eslint-plugin-react-hooks": "4.6.0",
21+
"eslint-plugin-unicorn": "49.0.0",
22+
"prettier": "3.1.0",
23+
"prettier-plugin-jsdoc": "1.1.1",
24+
"prettier-plugin-organize-imports": "3.2.4",
2525
"snowpack": "3.8.8",
2626
"ts-prune": "0.10.3",
27-
"typescript": "4.6.0-dev.20211218"
27+
"typescript": "5.3.2"
2828
},
2929
"homepage": "https://worstpractice.github.io/WinDOMs97",
3030
"name": "windoms97",
@@ -35,8 +35,10 @@
3535
"fmt": "prettier -u --config .prettierrc --plugin=prettier-plugin-jsdoc --plugin=prettier-plugin-organize-imports -w ./src/**/*.{css,d.ts,module.css,ts,tsx,json}",
3636
"lint": "eslint ./src --ext .ts,.tsx",
3737
"lint:fix": "eslint ./src --ext .ts,.tsx,.json --fix",
38-
"nuke": "node ./scripts/nuke.mjs",
38+
"nuke": "pnpm nuke:snowpack && node -e \"import(`node:fs/promises`).then(({ rm }) => Promise.all([`node_modules`, `pnpm-lock.yaml`].map((path) => rm(path, { force: true, recursive: true }))));\"",
39+
"nuke:snowpack": "node ./scripts/nuke.mjs",
3940
"postinstall": "pnpm nuke",
41+
"reinstall": "pnpm nuke && pnpm store prune && pnpm i -g pnpm && pnpm update -g -L && pnpm i && pnpm update -L",
4042
"start": "snowpack dev",
4143
"tidy": "pnpm run lint:fix && pnpm run fmt && pnpm run dce"
4244
},

0 commit comments

Comments
 (0)