Skip to content

Commit

Permalink
fix: use bash to run mkdir -p for npm run dsc
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePrez committed Jan 9, 2024
1 parent 8df50db commit a79a560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -638,7 +638,7 @@
"lint": "eslint .",
"pretest": "npm run lint",
"language:test": "vitest",
"dsc": "mkdir -p dist && npx tsx src/dsc",
"dsc": "bash -c 'mkdir -p dist' && npx tsx src/dsc",
"package": "vsce package",
"vscode:prepublish": "rm -rf dist && webpack --mode production && npm run dsc",
"webpack": "webpack --mode development",
Expand Down

0 comments on commit a79a560

Please sign in to comment.