Skip to content

Commit

Permalink
Update test configuration for explore-config package
Browse files Browse the repository at this point in the history
  • Loading branch information
1aron committed May 2, 2024
1 parent 5cc2742 commit 85a1ca8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/semantic-release-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"build:type": "tsc --emitDeclarationOnly --preserveWatchOutput",
"build": "pnpm run \"/^build:.*/\"",
"dev": "pnpm run \"/^build:.*/\" --watch",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"type-check": "tsc --noEmit",
"lint": "eslint src"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/semantic-release-config/tests/publish/test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import configure from '../../src/configure'
import path from 'path';
const __dirname = path.dirname(new URL(import.meta.url).pathname);
const __dirname = path.normalize(path.dirname(new URL(import.meta.url).pathname));

it('only publishs the public packages', () => {
process.chdir(__dirname)
Expand Down

0 comments on commit 85a1ca8

Please sign in to comment.