-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change dev experience to favor Vue CLI as opposed to Nx
- Loading branch information
1 parent
b66ffe1
commit e7b5586
Showing
33 changed files
with
4,630 additions
and
8,417 deletions.
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
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 |
---|---|---|
@@ -1,30 +1,14 @@ | ||
import { JsonObject } from '@angular-devkit/core'; | ||
|
||
export interface BrowserBuilderSchema extends JsonObject { | ||
optimization: boolean; | ||
outputPath: string; | ||
deleteOutputPath: boolean; | ||
mode: string; | ||
dest: string; | ||
clean: boolean; | ||
report: boolean; | ||
reportJson: boolean; | ||
skipPlugins?: string; | ||
watch: boolean; | ||
index: string; | ||
main: string; | ||
tsConfig: string; | ||
assets: Array<string | AssetPattern>; | ||
fileReplacements: FileReplacementPattern[]; | ||
outputHashing: 'none' | 'all' | 'media' | 'bundles'; | ||
extractCss: boolean; | ||
} | ||
|
||
interface AssetPattern { | ||
glob: string; | ||
input: string; | ||
ignore?: string[]; | ||
output: string; | ||
} | ||
|
||
interface FileReplacementPattern { | ||
replace: string; | ||
with: string; | ||
} |
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
Oops, something went wrong.