Skip to content

Commit

Permalink
move src
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Aug 24, 2024
1 parent 0203538 commit bb91199
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"scripts": {
"build": "tsup",
"dev": "tsup --watch --onSuccess \"tsup --dts-only \"",
"lint:code": "eslint **/*.json **/*.ts --no-warn-ignored",
"lint:code": "eslint **/*.json src/**/*.ts --no-warn-ignored",
"lint:deps": "knip --production",
"lint": "npm-run-all --parallel lint:*",
"prepack": "npm run build",
Expand Down
2 changes: 1 addition & 1 deletion tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default defineConfig((options) => {
target: 'node18',
clean: true,
dts: true,
entry: ['index.ts'],
entry: ['src/index.ts'],
format: 'esm',
minify: !options.watch,
treeshake: 'recommended',
Expand Down

0 comments on commit bb91199

Please sign in to comment.