Skip to content

Commit

Permalink
fix: copy typings to build directory
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Feb 20, 2021
1 parent a0dd6fd commit 900957a
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 6 deletions.
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@
"test.format": "prettier . --check",
"lint": "eslint . --fix --ext .ts",
"test.lint": "eslint . --ext .ts",
"clean": "rimraf build",
"compile": "tsc",
"watch": "tsc -watch",
"clean": "shx rm -rf build && mkdirp build",
"copy.typings": "shx cp -r ./typings ./build",
"compile": "npm run copy.typings && tsc",
"watch": "npm run compile -- --watch",
"prepare": "npm run clean && npm run compile",
"test": "npm run compile && atom --test build/test"
},
Expand All @@ -43,7 +44,7 @@
"eslint": "^7.18.0",
"mocha": "^8.2.1",
"mocha-appveyor-reporter": "^0.4.2",
"rimraf": "^3.0.2",
"shx": "^0.3.3",
"sinon": "^9.2.4",
"typescript": "~4.1.3"
}
Expand Down
68 changes: 66 additions & 2 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 900957a

Please sign in to comment.