Skip to content

Commit

Permalink
Get the build working.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Apr 17, 2019
1 parent ea206d2 commit 4daec40
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build-x": "npm run build-server ; npm run build-client",
"build-client": "cd packages/client && npm run build",
"build-server": "cd packages/server && npm run build",
"clean": "lerna clean",
"clean": "lerna run clean && lerna clean",
"test-client": "cd packages/client && npm run test",
"test-client-integration": "lerna run test-integration",
"test-server": "cd packages/server && npm run test",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/src/server/server.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

export * from '../../server/src';
export * from '../../server';
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"build": "npm run compile",
"clean-build": "npm run clean && npm run build",
"compile": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -p .",
"compile": "tsc -p . && installServerIntoExtension ../client ./package.json ./tsconfig.json",
"watch": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc --watch -p .",
"tsc": "tsc -p .",
"test-watch": "jest --watch",
Expand Down

0 comments on commit 4daec40

Please sign in to comment.