Skip to content

Commit 471a7be

Browse files
committed
fix(ci): replaced cp command with cpy
1 parent 2c9dae0 commit 471a7be

File tree

3 files changed

+279
-4
lines changed

3 files changed

+279
-4
lines changed

detector/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"ts-node": "^10.9.2"
3737
},
3838
"scripts": {
39-
"compile": "rm -rf build/ types/ && tsc && cp -R ./src/reporters/layout ./build/src/reporters/",
39+
"compile": "rm -rf build/ types/ && tsc && cpy 'src/reporters/layout/**/*' 'build/src/reporters/layout/'",
4040
"watch": "webpack --watch",
4141
"clean": "rm -rf out/ dist/ types/",
4242
"compile-tests": "npm run clean && tsc -p . --outDir out",

package-lock.json

Lines changed: 274 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@
44
"description": "Smelly test is an extension that helps developers mitigate test smells in their test suites. Smelly test is focused on the javascript/typescript ecosystem, for the backend and frontend.",
55
"devDependencies": {
66
"@types/mocha": "^10.0.8",
7+
"@types/node": "^20.14.8",
8+
"@vitest/coverage-v8": "^2.1.6",
9+
"cpy-cli": "^5.0.0",
710
"dotenv": "^16.4.5",
811
"rimraf": "^5.0.7",
912
"ts-loader": "^9.5.1",
1013
"typescript": "^5.2.0",
1114
"vitest": "^2.1.6",
1215
"webpack": "^5.93.0",
13-
"webpack-cli": "^5.1.4",
14-
"@vitest/coverage-v8": "^2.1.6",
15-
"@types/node": "^20.14.8"
16+
"webpack-cli": "^5.1.4"
1617
},
1718
"scripts": {
1819
"build": "npm exec --workspaces -- npm run compile",

0 commit comments

Comments
 (0)