Skip to content

Commit

Permalink
feat: v0.1.8 (#31)
Browse files Browse the repository at this point in the history
* fix: -f flag added to npm clean script, prevents failure if ./dist does not exist

* feat: v0.1.8
  • Loading branch information
roerohan authored Oct 1, 2020
1 parent bb6829c commit 9bbae0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "code-executor",
"version": "0.1.7",
"version": "0.1.8",
"description": "A CLI/library to execute code against test cases in various languages and obtain relevant results.",
"main": "dist/src/CodeExecutor.js",
"keywords": [
Expand All @@ -15,7 +15,7 @@
"scripts": {
"build": "npm run clean && tsc && npm run build:dockerfiles",
"build:dockerfiles": "shx cp -r src/langs dist/src/langs",
"clean": "shx rm -r ./dist",
"clean": "shx rm -rf ./dist",
"test": "mocha --config test/.mocharc.json test/**/*.ts",
"lint": "eslint \"src/**/*.{ts,js,jsx}\" \"test/**/*.ts\" \"examples/**/*.{ts,js}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,js,jsx}\" \"test/**/*.ts\" \"examples/**/*.{ts,js}\"",
Expand Down

0 comments on commit 9bbae0b

Please sign in to comment.