From 316071e09d2cb6c82581bfbca388790a368249e6 Mon Sep 17 00:00:00 2001 From: Daniel Imhoff Date: Thu, 23 Aug 2018 19:14:26 -0500 Subject: [PATCH 1/3] feat(environments): add process declaration --- ionic-angular/base/src/declarations.d.ts | 1 + 1 file changed, 1 insertion(+) create mode 100644 ionic-angular/base/src/declarations.d.ts diff --git a/ionic-angular/base/src/declarations.d.ts b/ionic-angular/base/src/declarations.d.ts new file mode 100644 index 000000000..897fa448c --- /dev/null +++ b/ionic-angular/base/src/declarations.d.ts @@ -0,0 +1 @@ +declare var process: { env: { [key: string]: string | undefined; } }; From 21c688d9586ada5f8db08bfb18753eab70d70976 Mon Sep 17 00:00:00 2001 From: Daniel Imhoff Date: Fri, 24 Aug 2018 14:11:02 -0500 Subject: [PATCH 2/3] remove @types packages after building starters quick hack because they interfere with starters build see https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#types-typeroots-and-types --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d37d3f07d..42b705733 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -72,6 +72,7 @@ jobs: - save_cache: *save-cache-src - run: npm run src:lint - run: npm run src:build + - run: rm -rf node_modules/@types - run: npm run starters:find-redundant - run: npm run starters:build - run: npm run starters:generate-checksum From 68059fcf2ed2a24c19514c6952bb84cd22d1126a Mon Sep 17 00:00:00 2001 From: Daniel Imhoff Date: Fri, 24 Aug 2018 14:52:15 -0500 Subject: [PATCH 3/3] update app-scripts to 3.2.0 --- ionic-angular/base/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ionic-angular/base/package.json b/ionic-angular/base/package.json index 48729edc5..fefbb89f6 100644 --- a/ionic-angular/base/package.json +++ b/ionic-angular/base/package.json @@ -31,7 +31,7 @@ "zone.js": "0.8.26" }, "devDependencies": { - "@ionic/app-scripts": "3.1.11", + "@ionic/app-scripts": "3.2.0", "typescript": "~2.6.2" } }