Skip to content

Commit ab6ea10

Browse files
committed
update npmignore
1 parent 96279d8 commit ab6ea10

File tree

2 files changed

+25
-17
lines changed

2 files changed

+25
-17
lines changed

.npmignore

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
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__/
1124
deploy.sh
12-
deploy-toolkit.yaml
13-
.idea
14-
__test__
15-
__mock__
16-
__sandbox__
17-
.python-version
25+
deploy-toolkit.yaml

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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",

0 commit comments

Comments
 (0)