Skip to content

Commit

Permalink
fix(angular-virtual): fix build & remove unused scripts (#807)
Browse files Browse the repository at this point in the history
Excluding .d.ts files from the package output results in TypeScript errors for consumers trying to install @tanstack/angular-virtual.
  • Loading branch information
garrettld authored Aug 22, 2024
1 parent 5942890 commit 566a9d0
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions packages/angular-virtual/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,12 @@
"node": ">=12"
},
"files": [
"build",
"!**/*.d.ts",
"!**/*.d.ts.map"
"build"
],
"scripts": {
"clean": "rimraf ./build",
"test:types": "tsc --noEmit",
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json",
"build-no-package-json": "pnpm run build && rimraf ./build/package.json",
"BAK": "ng-packagr -p ng-package.json -c tsconfig.build.json",
"build:types": "tsc --emitDeclarationOnly"
"build": "ng-packagr -p ng-package.json -c tsconfig.build.json"
},
"dependencies": {
"@tanstack/virtual-core": "workspace:*",
Expand Down

0 comments on commit 566a9d0

Please sign in to comment.