Skip to content

Commit

Permalink
Ensure plugin data is copied into plugins directory
Browse files Browse the repository at this point in the history
  • Loading branch information
kmturley committed Jul 7, 2024
1 parent 55e2020 commit 246578e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"build"
],
"scripts": {
"copy": "cp -r ./src/plugins ./out",
"copy": "mkdir ./out && cp -rf ./src/plugins ./out",
"start": "node ./build/main.js",
"clean": "rimraf coverage build tmp",
"clean": "rimraf coverage build tmp out",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json && npm run copy",
"build": "npm run clean && tsc -p tsconfig.json && npm run copy",
"dev": "tsx ./src/main.ts",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json && npm run copy",
"lint": "eslint ./**/*.ts",
"test": "vitest run ./tests",
"format": "prettier . --write",
Expand Down

0 comments on commit 246578e

Please sign in to comment.