-
Notifications
You must be signed in to change notification settings - Fork 316
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(environments): add process declaration (#420)
* feat(environments): add process declaration * 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 * update app-scripts to 3.2.0
- Loading branch information
Showing
3 changed files
with
3 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
declare var process: { env: { [key: string]: string | undefined; } }; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong. |
this declare causing ionic-team/ionic-cli#3541 .
I know this is feature function. ionic-team/ionic-cli#3300
but if delete this declare, local Ionic CLI worked.