Angular cli changes css files order when build
See original GitHub issueWhen I check bundle after ng build --prod --aot false
I found that css files order was modified by the build process.
angular-cli.json
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"project": {
"name": "performance"
},
"apps": [
{
"root": "src",
"outDir": "dist",
"assets": [
"assets",
"favicon.ico"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "test.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app",
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.css",
"../node_modules/font-awesome/css/font-awesome.css",
"../node_modules/animate.css/animate.min.css",
"../node_modules/ng2-toastr/bundles/ng2-toastr.min.css",
"styles.scss"
],
"scripts": [
"../node_modules/jquery/dist/jquery.js",
"../node_modules/metismenu/dist/metisMenu.js",
"../node_modules/jquery-sparkline/jquery.sparkline.js",
"../vendor/pace/pace.min.js"
],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
}
],
"e2e": {
"protractor": {
"config": "./protractor.conf.js"
}
},
"lint": [
{
"project": "src/tsconfig.app.json"
},
{
"project": "src/tsconfig.spec.json"
},
{
"project": "e2e/tsconfig.e2e.json"
}
],
"test": {
"karma": {
"config": "./karma.conf.js"
}
},
"defaults": {
"styleExt": "css",
"component": {}
}
}
package.json
{
"name": "performance",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^4.0.1",
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/compiler-cli": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/forms": "^4.0.1",
"@angular/http": "^4.0.1",
"@angular/platform-browser": "^4.0.1",
"@angular/platform-browser-dynamic": "^4.0.1",
"@angular/platform-server": "^4.0.1",
"@angular/router": "^4.0.1",
"@ngui/auto-complete": "^0.16.0",
"@swimlane/ngx-charts": "^6.1.0",
"angular-autofocus-fix": "^0.1.0",
"angular2-image-upload": "^1.0.0-rc.0",
"angular2-masonry": "^0.4.0",
"angular2-moment": "^1.7.0",
"animate.css": "3.1.1",
"bootstrap": "^3.3.7",
"chart.js": "^2.7.1",
"core-js": "^2.4.1",
"d3": "^4.11.0",
"font-awesome": "^4.7.0",
"jquery": "^3.1.0",
"jquery-slimscroll": "^1.3.8",
"jquery-sparkline": "^2.4.0",
"jvectormap": "1.2.2",
"metismenu": "^2.5.0",
"ng2-charts": "^1.5.0",
"ng2-completer": "^1.6.3",
"ng2-file-upload": "^1.2.1",
"ng2-smart-table": "^1.2.2",
"ng2-toastr": "^4.1.2",
"ngx-bootstrap": "^1.6.6",
"ngx-slimscroll": "^3.4.1",
"ngx-ui-switch": "1.4.4",
"ngx-webstorage": "^1.8.0",
"peity": "^3.2.1",
"rxjs": "^5.1.0",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "^1.0.0",
"@angular/compiler-cli": "^2.4.0",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"codelyzer": "~2.0.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.1.0",
"ts-node": "~2.0.0",
"tslint": "~4.5.0",
"typescript": "~2.4"
}
}
Issue Analytics
- State:
- Created 6 years ago
- Reactions:37
- Comments:53 (1 by maintainers)
Top Results From Across the Web
How to adjust import order of .css files in Angular
You need to change to, "styles": [ "styles.css" ],. Then, Link all CSS files in styles.css. Include all files at the top of...
Read more >Building StyleSheets Using the Angular CLI - Pluralsight
This command will create a new Angular app within your current directory that is named testing-css . In the process of creating your...
Read more >This is how angular-cli/webpack delivers your CSS styles to ...
In this article I'll show you how Webpack does it by transforming your CSS styles into JavaScript.
Read more >The [New] State of CSS in Angular | by Emma Twersky
In this post, we'll take a look at new web features that impact how we define styling in our Angular applications. In 2019,...
Read more >Angular Global CSS styles - TekTutorialsHub
Adding multiple style sheet ... Next, add the CSS file to the angular.json as shown below. ... ],. Order of the styles sheets...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
ng build --prod -extract-css false
solved the problem until finding final solutionStrangely, I notice that the styles are in the desired order when I run in dev mode, but in the wrong order when I run in production.