How to deploy SCSS file to dist in angular 6?












1















We have a need to deploy scss files to dist directory when angular is building. I am fully aware that only css should be deployed after the build however we have custom need to read the scss file on run time and perform certain action.



I tried adding below line (last line under scripts:) in angular.json file but that did not help. I cant find any file deploying during debug.



    "build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "src/tsconfig.app.json",
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/scss/styles.scss"
],
"scripts": [
"node_modules/jquery/dist/jquery.min.js",
"node_modules/bootstrap/dist/js/bootstrap.js",
"src/scss/_custom-variables.scss"
]
},









share|improve this question



























    1















    We have a need to deploy scss files to dist directory when angular is building. I am fully aware that only css should be deployed after the build however we have custom need to read the scss file on run time and perform certain action.



    I tried adding below line (last line under scripts:) in angular.json file but that did not help. I cant find any file deploying during debug.



        "build": {
    "builder": "@angular-devkit/build-angular:browser",
    "options": {
    "outputPath": "dist",
    "index": "src/index.html",
    "main": "src/main.ts",
    "polyfills": "src/polyfills.ts",
    "tsConfig": "src/tsconfig.app.json",
    "assets": [
    "src/favicon.ico",
    "src/assets"
    ],
    "styles": [
    "node_modules/bootstrap/dist/css/bootstrap.min.css",
    "src/scss/styles.scss"
    ],
    "scripts": [
    "node_modules/jquery/dist/jquery.min.js",
    "node_modules/bootstrap/dist/js/bootstrap.js",
    "src/scss/_custom-variables.scss"
    ]
    },









    share|improve this question

























      1












      1








      1








      We have a need to deploy scss files to dist directory when angular is building. I am fully aware that only css should be deployed after the build however we have custom need to read the scss file on run time and perform certain action.



      I tried adding below line (last line under scripts:) in angular.json file but that did not help. I cant find any file deploying during debug.



          "build": {
      "builder": "@angular-devkit/build-angular:browser",
      "options": {
      "outputPath": "dist",
      "index": "src/index.html",
      "main": "src/main.ts",
      "polyfills": "src/polyfills.ts",
      "tsConfig": "src/tsconfig.app.json",
      "assets": [
      "src/favicon.ico",
      "src/assets"
      ],
      "styles": [
      "node_modules/bootstrap/dist/css/bootstrap.min.css",
      "src/scss/styles.scss"
      ],
      "scripts": [
      "node_modules/jquery/dist/jquery.min.js",
      "node_modules/bootstrap/dist/js/bootstrap.js",
      "src/scss/_custom-variables.scss"
      ]
      },









      share|improve this question














      We have a need to deploy scss files to dist directory when angular is building. I am fully aware that only css should be deployed after the build however we have custom need to read the scss file on run time and perform certain action.



      I tried adding below line (last line under scripts:) in angular.json file but that did not help. I cant find any file deploying during debug.



          "build": {
      "builder": "@angular-devkit/build-angular:browser",
      "options": {
      "outputPath": "dist",
      "index": "src/index.html",
      "main": "src/main.ts",
      "polyfills": "src/polyfills.ts",
      "tsConfig": "src/tsconfig.app.json",
      "assets": [
      "src/favicon.ico",
      "src/assets"
      ],
      "styles": [
      "node_modules/bootstrap/dist/css/bootstrap.min.css",
      "src/scss/styles.scss"
      ],
      "scripts": [
      "node_modules/jquery/dist/jquery.min.js",
      "node_modules/bootstrap/dist/js/bootstrap.js",
      "src/scss/_custom-variables.scss"
      ]
      },






      sass angular6






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 23 '18 at 23:40









      ZeusZeus

      1,30632742




      1,30632742
























          2 Answers
          2






          active

          oldest

          votes


















          0














          Out of the box; angular 6 does not provide a way to do this natively. However; you can achieve what you are describing by using custom webpack configuration that utilizes Angular 6 builders.



          For example, you can use Custom Webpack Builder. Due to the nature of builders,their configuration is merged with CLI own configuration, so all you need to do is to create a minimalistic configuration utilizing Webpack Copy Plugin; then use glob patterns to catch & copy all required .scss files to dist/ directory.



          You can try to fiddle with similar webpack configuration:



          "use strict";

          const CopyWebpackPlugin = require("copy-webpack-plugin");

          module.exports = {
          plugins: [
          new CopyWebpackPlugin([
          {
          from: "src/app/**/*.scss",
          to: "dist/app/"
          }
          ]
          )
          ]
          };


          Alternatively; if you do not require ejected SCSS during development and only in production package, you can use simple Gulp task to copy the files



          "use strict";

          let gulp = require("gulp");

          gulp.task("copy:styles", () =>
          gulp.src(["src/app/**/*.scss"])
          .pipe(gulp.dest("dist/app/")));





          share|improve this answer































            0














                    "assets": [
            "src/favicon.ico",
            "src/assets",
            "src/scss/_custom.scss"
            ],


            Adding this under assets in angular.json file works for me. I was looking under wrong folder.






            share|improve this answer























              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53453929%2fhow-to-deploy-scss-file-to-dist-in-angular-6%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              0














              Out of the box; angular 6 does not provide a way to do this natively. However; you can achieve what you are describing by using custom webpack configuration that utilizes Angular 6 builders.



              For example, you can use Custom Webpack Builder. Due to the nature of builders,their configuration is merged with CLI own configuration, so all you need to do is to create a minimalistic configuration utilizing Webpack Copy Plugin; then use glob patterns to catch & copy all required .scss files to dist/ directory.



              You can try to fiddle with similar webpack configuration:



              "use strict";

              const CopyWebpackPlugin = require("copy-webpack-plugin");

              module.exports = {
              plugins: [
              new CopyWebpackPlugin([
              {
              from: "src/app/**/*.scss",
              to: "dist/app/"
              }
              ]
              )
              ]
              };


              Alternatively; if you do not require ejected SCSS during development and only in production package, you can use simple Gulp task to copy the files



              "use strict";

              let gulp = require("gulp");

              gulp.task("copy:styles", () =>
              gulp.src(["src/app/**/*.scss"])
              .pipe(gulp.dest("dist/app/")));





              share|improve this answer




























                0














                Out of the box; angular 6 does not provide a way to do this natively. However; you can achieve what you are describing by using custom webpack configuration that utilizes Angular 6 builders.



                For example, you can use Custom Webpack Builder. Due to the nature of builders,their configuration is merged with CLI own configuration, so all you need to do is to create a minimalistic configuration utilizing Webpack Copy Plugin; then use glob patterns to catch & copy all required .scss files to dist/ directory.



                You can try to fiddle with similar webpack configuration:



                "use strict";

                const CopyWebpackPlugin = require("copy-webpack-plugin");

                module.exports = {
                plugins: [
                new CopyWebpackPlugin([
                {
                from: "src/app/**/*.scss",
                to: "dist/app/"
                }
                ]
                )
                ]
                };


                Alternatively; if you do not require ejected SCSS during development and only in production package, you can use simple Gulp task to copy the files



                "use strict";

                let gulp = require("gulp");

                gulp.task("copy:styles", () =>
                gulp.src(["src/app/**/*.scss"])
                .pipe(gulp.dest("dist/app/")));





                share|improve this answer


























                  0












                  0








                  0







                  Out of the box; angular 6 does not provide a way to do this natively. However; you can achieve what you are describing by using custom webpack configuration that utilizes Angular 6 builders.



                  For example, you can use Custom Webpack Builder. Due to the nature of builders,their configuration is merged with CLI own configuration, so all you need to do is to create a minimalistic configuration utilizing Webpack Copy Plugin; then use glob patterns to catch & copy all required .scss files to dist/ directory.



                  You can try to fiddle with similar webpack configuration:



                  "use strict";

                  const CopyWebpackPlugin = require("copy-webpack-plugin");

                  module.exports = {
                  plugins: [
                  new CopyWebpackPlugin([
                  {
                  from: "src/app/**/*.scss",
                  to: "dist/app/"
                  }
                  ]
                  )
                  ]
                  };


                  Alternatively; if you do not require ejected SCSS during development and only in production package, you can use simple Gulp task to copy the files



                  "use strict";

                  let gulp = require("gulp");

                  gulp.task("copy:styles", () =>
                  gulp.src(["src/app/**/*.scss"])
                  .pipe(gulp.dest("dist/app/")));





                  share|improve this answer













                  Out of the box; angular 6 does not provide a way to do this natively. However; you can achieve what you are describing by using custom webpack configuration that utilizes Angular 6 builders.



                  For example, you can use Custom Webpack Builder. Due to the nature of builders,their configuration is merged with CLI own configuration, so all you need to do is to create a minimalistic configuration utilizing Webpack Copy Plugin; then use glob patterns to catch & copy all required .scss files to dist/ directory.



                  You can try to fiddle with similar webpack configuration:



                  "use strict";

                  const CopyWebpackPlugin = require("copy-webpack-plugin");

                  module.exports = {
                  plugins: [
                  new CopyWebpackPlugin([
                  {
                  from: "src/app/**/*.scss",
                  to: "dist/app/"
                  }
                  ]
                  )
                  ]
                  };


                  Alternatively; if you do not require ejected SCSS during development and only in production package, you can use simple Gulp task to copy the files



                  "use strict";

                  let gulp = require("gulp");

                  gulp.task("copy:styles", () =>
                  gulp.src(["src/app/**/*.scss"])
                  .pipe(gulp.dest("dist/app/")));






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 24 '18 at 19:24









                  Jacek LipiecJacek Lipiec

                  1817




                  1817

























                      0














                              "assets": [
                      "src/favicon.ico",
                      "src/assets",
                      "src/scss/_custom.scss"
                      ],


                      Adding this under assets in angular.json file works for me. I was looking under wrong folder.






                      share|improve this answer




























                        0














                                "assets": [
                        "src/favicon.ico",
                        "src/assets",
                        "src/scss/_custom.scss"
                        ],


                        Adding this under assets in angular.json file works for me. I was looking under wrong folder.






                        share|improve this answer


























                          0












                          0








                          0







                                  "assets": [
                          "src/favicon.ico",
                          "src/assets",
                          "src/scss/_custom.scss"
                          ],


                          Adding this under assets in angular.json file works for me. I was looking under wrong folder.






                          share|improve this answer













                                  "assets": [
                          "src/favicon.ico",
                          "src/assets",
                          "src/scss/_custom.scss"
                          ],


                          Adding this under assets in angular.json file works for me. I was looking under wrong folder.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Dec 4 '18 at 0:28









                          ZeusZeus

                          1,30632742




                          1,30632742






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53453929%2fhow-to-deploy-scss-file-to-dist-in-angular-6%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Different font size/position of beamer's navigation symbols template's content depending on regular/plain...

                              Berounka

                              I want to find a topological embedding $f : X rightarrow Y$ and $g: Y rightarrow X$, yet $X$ is not...