Category:Angular: Difference between revisions

From Chorke Wiki
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...")
 
No edit summary
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
</syntaxhighlight>
== ng4 with mvn integration ==
== ng4 with mvn integration ==
<pre>
<pre>
Line 23: Line 33:
     │  │  │  │   
     │  │  │  │   
     │  │  │  ├─ 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
     │  │  │  │  ├─ inline.*.bundle.js
     │  │  │  │  ├─ main.bundle.js
     │  │  │  │  ├─ main.*.bundle.js
     │  │  │  │  ├─ inline.bundle.js
     │  │  │  │  ├─ polyfills.*.bundle.js
     │  │  │  │  ├─ polyfills.bundle.js
     │  │  │  │  ├─ styles.*.bundle.css
     │  │  │  │  └─ styles.bundle.css
    │  │  │  │  └─ vendor.*.bundle.js
     │  │  │  │
     │  │  │  │
     │  │  │  ├─ tslint.json
     │  │  │  ├─ tslint.json
Line 49: Line 58:
     │  ├─ antrun/
     │  ├─ antrun/
     │  ├─ classes/META-INF/resources/static/
     │  ├─ classes/META-INF/resources/static/
     │  │   ├─ Log-ng4.css
     │  │     └─ log
     │  │   ├─ Log-ng4-main.js
     │  │             ├─ main.bundle.js
     │  │   ├─ Log-ng4-inline.js
     │  │             ├─ inline.bundle.js
     │  │   ├─ Log-ng4-vendor.js
     │  │             ├─ polyfills.bundle.js
     │  │   └─ Log-ng4-polyfills.js
     │  │             └─ styles.bundle.css
     │  │
     │  │
     │  ├─ test-classes/
     │  ├─ test-classes/

Revision as of 04:36, 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


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.