Skip to content

Commit

Permalink
\
Browse files Browse the repository at this point in the history
  • Loading branch information
rcmedeiros committed Mar 10, 2019
1 parent dbad308 commit 724a5fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,18 +127,18 @@ jobs:
steps:
- run:
name: Build for development
command: |
command:
./node_modules/.bin/tsc -p tsconfig.json --removeComments true
--skipLibCheck true --sourceMap false --listFiles true
\ --skipLibCheck true --sourceMap false --listFiles true \
--listEmittedFiles true --declaration true
- unless:
condition: << parameters.production >>
steps:
- run:
name: Build for production
command: |
./node_modules/.bin/tsc -p tsconfig.json --skipLibCheck true
--listFiles true --listEmittedFiles true --declaration true
./node_modules/.bin/tsc -p tsconfig.json --skipLibCheck true \
--listFiles true --listEmittedFiles true --declaration true \
--sourceMap false --inlineSourceMap true --inlineSources true
- persist_to_workspace:
root: ./
Expand Down

0 comments on commit 724a5fc

Please sign in to comment.