Browse Source

chore(common): Fix path in build script

Michael Bromley 5 years ago
parent
commit
18d4a68084
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/common/package.json

+ 1 - 1
packages/common/package.json

@@ -5,7 +5,7 @@
   "license": "MIT",
   "scripts": {
     "watch": "tsc -p ./tsconfig.build.json -w",
-    "build": "rimraf dist && tsc -p ./tsconfig.build.json",
+    "build": "rimraf lib && tsc -p ./tsconfig.build.json",
     "lint": "tslint --fix --project ./",
     "test": "jest --config ./jest.config.js",
     "ci": "yarn build"