Skip to content

Commit

Permalink
Deps Cleanup (#120)
Browse files Browse the repository at this point in the history
  • Loading branch information
huntharo authored Nov 25, 2021
1 parent 560c105 commit a47dad8
Show file tree
Hide file tree
Showing 39 changed files with 853 additions and 4,797 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/prbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,28 @@ jobs:

- name: Install Node Modules
run: npm ci

- name: Generate Projen Files
run: |
cd src/microapps-cdk/
npm run projen
- name: Modify microapps-cdk tsconfig.json
run: |
mv ./src/microapps-cdk/tsconfig.json ./src/microapps-cdk/tsconfig.jsii.json
jq ".compilerOptions += { \"skipLibCheck\": true }" ./src/microapps-cdk/tsconfig.jsii.json > ./src/microapps-cdk/tsconfig.json
- name: Build All TypeScript
run: npm run build --if-present

- name: Move root modules out of the way for CDK Construct build
run: mv node_modules node_modules_hide

- name: Build CDK Construct
run: cd src/microapps-cdk && npm ci && npm run build

- name: Modify microapps-cdk tsconfig.json
run: 'mv ./src/microapps-cdk/tsconfig.json ./src/microapps-cdk/tsconfig.jsii.json && jq ".compilerOptions += { \"skipLibCheck\": true }" ./src/microapps-cdk/tsconfig.jsii.json > ./src/microapps-cdk/tsconfig.json'

- name: Build All TypeScript
run: npm run build --if-present
run: |
cd src/microapps-cdk
npm ci
npm run build
- name: Run Lint
run: npm run lint
Expand Down
11 changes: 6 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"files.exclude": {
//"**/node_modules/*": true,
//"cdk.out": true
//"node_modules": true,
//"**/node_modules": true
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dist": true,
"**/cdk.out": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
Expand Down
Loading

0 comments on commit a47dad8

Please sign in to comment.