Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-bromann committed Apr 26, 2024
1 parent f9ae3e6 commit 3bf164b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"clean": "rimraf ./node_modules package-lock.yaml ./dist",
"prepare": "husky install",
"postinstall": "test -f ./dist/install.js && node ./dist/install.js || echo \"Skipping install, project not build!\"",
"test": "run-s test:*",
"test": "run-s build test:*",
"test:lint": "eslint",
"test:unit": "vitest --run",
"test:e2e": "tsx ./tests/test.e2e.ts",
Expand Down
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"target": "ES2020",
"baseUrl": "src",
"outDir": "./dist",
"rootDir": "./src",
"moduleResolution": "Node16",
"declaration": true,
"declarationMap": true,
Expand All @@ -20,6 +21,6 @@
"checkJs": true,
"types": ["node"]
},
"include": ["src/**/*", "src/cjs/package.json", "tests"],
"include": ["src/**/*", "src/cjs/package.json"],
"ignore": ["node_modules", "dist"]
}

0 comments on commit 3bf164b

Please sign in to comment.