Skip to content

Commit

Permalink
build: upgrade deps | debug _dirname
Browse files Browse the repository at this point in the history
  • Loading branch information
ccamensuli committed Dec 26, 2023
1 parent a2feb90 commit c2a44d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@
"@types/node": "20.10.5",
"@types/shelljs": "0.8.15",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"@typescript-eslint/eslint-plugin": "6.16.0",
"@typescript-eslint/parser": "6.16.0",
"chai": "4.3.10",
"eslint": "8.56.0",
"mocha": "10.2.0",
"npm-run-all2": "6.1.1",
"rimraf": "5.0.5",
"rollup": "2.79.1",
"rollup": "4.9.1",
"rollup-plugin-copy": "3.5.0",
"terser": "5.26.0",
"ts-mocha": "10.0.0",
Expand All @@ -120,4 +120,4 @@
],
"author": "Christophe CAMENSULI <[email protected]>",
"readmeFilename": "README.md"
}
}
4 changes: 2 additions & 2 deletions rollup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function createNodePlugins(
return [
nodeResolve({ preferBuiltins: true }),
typescript({
tsconfig: path.resolve(__dirname, 'tsconfig.json'),
tsconfig: path.resolve( 'tsconfig.json'),
sourceMap,
declaration: declarationDir !== false,
declarationDir: declarationDir !== false ? declarationDir : undefined,
Expand Down Expand Up @@ -139,7 +139,7 @@ function createTstPlugins(
return [
nodeResolve({ preferBuiltins: true }),
typescript({
tsconfig: path.resolve(__dirname, 'src','tests','tsconfig.test.json'),
tsconfig: path.resolve( 'src','tests','tsconfig.test.json'),
sourceMap,
declaration: declarationDir !== false,
declarationDir: declarationDir !== false ? declarationDir : undefined,
Expand Down

0 comments on commit c2a44d7

Please sign in to comment.