Skip to content

Webpack 4 boilerplate with Typescript and SASS,LESS/STYLUS support + dev-server and livereload

License

Notifications You must be signed in to change notification settings

Cigan12/Webpack-4-boilerplate-Typescript

 
 

Repository files navigation

Webpack 4 Boilerplate Typescript/Sass with build-in option to change preprocessor (less/stylus)

This Webpack 4 Boilerplate comes with 2 builds:

--> npm run build:dev
starts dev server on localhost:8080 with livereload, sourcemap

--> npm run build:prod
creates prod files to /dist with:

  1. compiles sass/stylus/less to css
  2. autoprefixer for vendor prefixes (browser compability)
  3. compiles typescript to ES5
  4. minifying for css/js
  5. uglyfing js code
  6. hash css and js file (file versioning for browser caching -> cache busting)

Setup

  1. git clone https://github.com/mwieth/Webpack-4-boilerplate-Typescript.gitclone and run npm install in project folder
  2. npm run build:dev or just npm start which also starts the dev mode

Preprocessor support (default: Sass)

--> if u want to change to less run:

  1. npm install less less-loader --save-dev

  2. npm uninstall node-sass sass-loader

  3. set selectedPreprocessor in \webpack\loader.js to less

  4. change default files in styles from sass to less

--> if u want to change to stylus run:

  1. npm install stylus stylus-loader --save-dev

  2. npm uninstall node-sass sass-loader

  3. set selectedPreprocessor in \webpack\loader.js to stylus

  4. change default files in styles from sass to stylus (*.styl)

--> if u want to use the 'original' loose *.sass syntax just change the files from *.scss to *.sass and update import in index.js line 1

About

Webpack 4 boilerplate with Typescript and SASS,LESS/STYLUS support + dev-server and livereload

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 40.9%
  • TypeScript 32.2%
  • HTML 25.2%
  • SCSS 1.7%