File tree Expand file tree Collapse file tree 2 files changed +25
-17
lines changed
Expand file tree Collapse file tree 2 files changed +25
-17
lines changed Original file line number Diff line number Diff line change 1- .vscode
2- .DS_STORE
3- .docz
4- .tscache
5- node_modules
6- .module-cache
1+ # Ignore source and config files
2+ src /
3+ tsconfig.json
4+ .eslintrc.json
5+ .prettierrc.json
6+ .vscode /
7+ .idea /
8+
9+ # Ignore build artifacts and logs
10+ node_modules /
11+ .tscache /
12+ .module-cache /
713* .log *
8- build
9- lib
10- src
14+
15+ # Ignore platform-specific and temporary files
16+ .DS_STORE
17+ .python-version
18+
19+ # Ignore documentation, tests, and deployment scripts
20+ .docz /
21+ __test__ /
22+ __mock__ /
23+ __sandbox__ /
1124deploy.sh
12- deploy-toolkit.yaml
13- .idea
14- __test__
15- __mock__
16- __sandbox__
17- .python-version
25+ deploy-toolkit.yaml
Original file line number Diff line number Diff line change 11{
22 "name" : " rerousel" ,
3- "version" : " 0.2.7 " ,
3+ "version" : " 0.2.8 " ,
44 "description" : " React carousel" ,
55 "main" : " dist/index.js" ,
66 "private" : false ,
77 "scripts" : {
88 "dev" : " vite" ,
9- "sandbox" : " cd __sandbox__ && npm run dev" ,
9+ "sandbox" : " cd src/ __sandbox__ && npm run dev" ,
1010 "build" : " tsup src/index.tsx --format esm,cjs --dts" ,
1111 "preview" : " vite preview" ,
1212 "test" : " jest" ,
You can’t perform that action at this time.
0 commit comments