File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Build artifacts
2+ dist /
3+
4+ .github /
5+
6+ # Test fixtures
7+ __tests__ /fixtures /
8+
9+ # Dependencies
10+ node_modules /
11+
12+ # Test coverage
13+ coverage /
14+
15+ # Package manager files
16+ package-lock.json
Original file line number Diff line number Diff line change 1+ {
2+ "singleQuote": true,
3+ "trailingComma": "all",
4+ "semi": true,
5+ "printWidth": 100,
6+ "tabWidth": 2
7+ }
Original file line number Diff line number Diff line change 2020 "scripts" : {
2121 "build" : " vite build --config vite.config.js && vite build --config vite-umd.config.js" ,
2222 "clean" : " rm -rf ./dist" ,
23+ "format" : " prettier --write ." ,
24+ "format:check" : " prettier --check ." ,
2325 "lint" : " node_modules/.bin/eslint ./ && npm run lint:translations && npm run lint:containers" ,
2426 "lint:containers" : " node ./scripts/container-lint.js" ,
2527 "lint:translations" : " node ./scripts/i18n-lint.js" ,
2628 "size" : " bundlewatch --config bundlewatch.config.json" ,
2729 "start" : " vite" ,
28- "test" : " npm run build && npm run lint && npm run size && vitest run"
30+ "test" : " npm run build && npm run lint && npm run format:check && npm run size && vitest run"
2931 },
3032 "license" : " Apache-2.0" ,
3133 "contributors" : [
106108 "glob" : " ^13.0.6" ,
107109 "globals" : " ^15.15.0" ,
108110 "happy-dom" : " ^20.0" ,
111+ "prettier" : " ^3.8.1" ,
109112 "react" : " ^19.0.0" ,
110113 "react-dnd-test-backend" : " ^16.0.1" ,
111114 "react-dom" : " ^19.0.0" ,
You can’t perform that action at this time.
0 commit comments