Skip to content

Commit 9bbae0b

Browse files
authored
feat: v0.1.8 (#31)
* fix: -f flag added to npm clean script, prevents failure if ./dist does not exist * feat: v0.1.8
1 parent bb6829c commit 9bbae0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "code-executor",
3-
"version": "0.1.7",
3+
"version": "0.1.8",
44
"description": "A CLI/library to execute code against test cases in various languages and obtain relevant results.",
55
"main": "dist/src/CodeExecutor.js",
66
"keywords": [
@@ -15,7 +15,7 @@
1515
"scripts": {
1616
"build": "npm run clean && tsc && npm run build:dockerfiles",
1717
"build:dockerfiles": "shx cp -r src/langs dist/src/langs",
18-
"clean": "shx rm -r ./dist",
18+
"clean": "shx rm -rf ./dist",
1919
"test": "mocha --config test/.mocharc.json test/**/*.ts",
2020
"lint": "eslint \"src/**/*.{ts,js,jsx}\" \"test/**/*.ts\" \"examples/**/*.{ts,js}\"",
2121
"lint:fix": "eslint --fix \"src/**/*.{ts,js,jsx}\" \"test/**/*.ts\" \"examples/**/*.{ts,js}\"",

0 commit comments

Comments
 (0)