Category:Angular: Difference between revisions
Jump to navigation
Jump to search
Created page with "== ng4 with mvn integration == <pre> /dev/jee/cko_workspaces/ecma_workspace/chorke-ecma-ng.log ├─ .git/ ├─ src/ │ ├─ main/ │ │ ├─ a..." |
|||
| (One intermediate revision by the same user not shown) | |||
| Line 1: | Line 1: | ||
== production build == | |||
<syntaxhighlight lang="bash"> | |||
# production build no source map, but hashing | |||
ng build --prod --aot --no-sourcemap | |||
# production build no source map, hashing and vendor | |||
ng build --prod --aot --no-sourcemap --output-hashing=none --vendor-chunk=false | |||
# production build no source map, hashing and vendor with build optimizer | |||
ng build --prod --aot --no-sourcemap --output-hashing=none --vendor-chunk=false --build-optimizer | |||
</syntaxhighlight> | |||
== ng4 with mvn integration == | == ng4 with mvn integration == | ||
<pre> | <pre> | ||
| Line 23: | Line 35: | ||
│ │ │ │ | │ │ │ │ | ||
│ │ │ ├─ e2e/ | │ │ │ ├─ e2e/ | ||
│ │ │ ├─ dist/ [ng build --prod --aot --no-sourcemap] | │ │ │ ├─ dist/ [ng build --prod --aot --no-sourcemap --output-hashing=none --vendor-chunk=false] | ||
│ │ │ │ ├─ index.html | │ │ │ │ ├─ index.html | ||
│ │ │ │ ├─ | │ │ │ │ ├─ main.bundle.js | ||
│ │ │ │ ├─ | │ │ │ │ ├─ inline.bundle.js | ||
│ │ │ │ ├─ polyfills | │ │ │ │ ├─ polyfills.bundle.js | ||
│ │ │ │ | │ │ │ │ └─ styles.bundle.css | ||
│ │ │ │ | │ │ │ │ | ||
│ │ │ ├─ tslint.json | │ │ │ ├─ tslint.json | ||
| Line 49: | Line 60: | ||
│ ├─ antrun/ | │ ├─ antrun/ | ||
│ ├─ classes/META-INF/resources/static/ | │ ├─ classes/META-INF/resources/static/ | ||
│ │ | │ │ └─ log | ||
│ │ | │ │ ├─ main.bundle.js | ||
│ │ | │ │ ├─ inline.bundle.js | ||
│ │ | │ │ ├─ polyfills.bundle.js | ||
│ │ | │ │ └─ styles.bundle.css | ||
│ │ | │ │ | ||
│ ├─ test-classes/ | │ ├─ test-classes/ | ||
Latest revision as of 11:20, 10 October 2017
production build
# production build no source map, but hashing
ng build --prod --aot --no-sourcemap
# production build no source map, hashing and vendor
ng build --prod --aot --no-sourcemap --output-hashing=none --vendor-chunk=false
# production build no source map, hashing and vendor with build optimizer
ng build --prod --aot --no-sourcemap --output-hashing=none --vendor-chunk=false --build-optimizer
ng4 with mvn integration
/dev/jee/cko_workspaces/ecma_workspace/chorke-ecma-ng.log
├─ .git/
├─ src/
│ ├─ main/
│ │ ├─ ant/
│ │ ├─ app/
│ │ ├─ ng4/
│ │ │ ├─ src
│ │ │ │ ├─ app/
│ │ │ │ ├─ assets/
│ │ │ │ ├─ main.ts
│ │ │ │ ├─ test.ts
│ │ │ │ ├─ index.html
│ │ │ │ ├─ styles.css
│ │ │ │ ├─ favicon.ico
│ │ │ │ ├─ polyfills.ts
│ │ │ │ ├─ typings.d.ts
│ │ │ │ ├─ environments/
│ │ │ │ ├─ tsconfig.app.json
│ │ │ │ └─ tsconfig.spec.json
│ │ │ │
│ │ │ ├─ e2e/
│ │ │ ├─ dist/ [ng build --prod --aot --no-sourcemap --output-hashing=none --vendor-chunk=false]
│ │ │ │ ├─ index.html
│ │ │ │ ├─ main.bundle.js
│ │ │ │ ├─ inline.bundle.js
│ │ │ │ ├─ polyfills.bundle.js
│ │ │ │ └─ styles.bundle.css
│ │ │ │
│ │ │ ├─ tslint.json
│ │ │ ├─ package.json
│ │ │ ├─ karma.conf.js
│ │ │ ├─ tsconfig.json
│ │ │ ├─ node_modules/
│ │ │ ├─ .angular-cli.json
│ │ │ ├─ package-lock.json
│ │ │ ├─ protractor.conf.js
│ │ │ └─ README.md
│ │ │
│ │ └─ resources/
│ │
│ └─ test/
│ └─ resources/
│
├─ target/
│ ├─ antrun/
│ ├─ classes/META-INF/resources/static/
│ │ └─ log
│ │ ├─ main.bundle.js
│ │ ├─ inline.bundle.js
│ │ ├─ polyfills.bundle.js
│ │ └─ styles.bundle.css
│ │
│ ├─ test-classes/
│ ├─ maven-archiver/
│ ├─ chorke-ecma-ng.log.css
│ ├─ chorke-ecma-ng.log.jar
│ ├─ chorke-ecma-ng.log.js
│ └─ chorke-ecma-ng.log.zip
│
├─ .gitignore
├─ README.md
├─ LICENSE
└─ pom.xml
This category currently contains no pages or media.