2
0
mirror of https://github.com/iconify/iconify.git synced 2024-09-20 01:09:04 +00:00

Clean up scripts in core

This commit is contained in:
Vjacheslav Trushkin 2020-12-21 11:55:16 +02:00
parent 30dfce2f6b
commit 79b4fa111a

View File

@ -13,12 +13,13 @@
},
"scripts": {
"clean": "rm -rf lib compiled-tests",
"lint": "npx eslint {src,tests}/**/*.ts",
"lint": "eslint {src,tests}/**/*.ts",
"prebuild": "npm run lint",
"build": "npx tsc -b",
"build": "tsc -b",
"build:src": "tsc --project src/tsconfig.json",
"prewatch": "npm run lint",
"watch": "npx tsc -b -w",
"test": "npx mocha tests-compiled/*/*-test.js",
"watch": "tsc -b -w",
"test": "mocha tests-compiled/*/*-test.js",
"pretest": "npm run build"
},
"devDependencies": {