Based on Vite
- 💡 Vue 3
- 💡 VueX 4
- 🛠️ Typescript support ( SFC )
- 🛠️ SCSS support ( SFC )
- ⚡️ Eslint ( support Vue 3, base extends Airbnb for Typescript ), Stylelint
- ⚡️ CommitLint ( with Husky )
- ⚡️ Babel
- 📦 Support generate docs from JSDocs ( only src/helpers || src/type modify in ./typedocs.json )
- 📦 Support alias
- 📦 Build with 7 in 1 SCSS folder pattern
- 📦 hot module replacement ( not reload )
- 📦 Optimized Build
- 📦 Bundle Analyzer
- ...
- Updating...
build
: Changes that affect the build system or external dependencies (example scopes: gulp, broccoli, npm).ci
: Changes to our CI configuration files and scripts (example scopes: Gitlab CI, Circle, BrowserStack, SauceLabs).chore
: add something without touching production code (Eg: update npm dependencies)docs
: Documentation only changesfeat
: A new featurefix
: A bug fixperf
: A code change that improves performancerefactor
: A code change that neither fixes a bug nor adds a featurerevert
: Reverts a previous commitstyle
: Changes that do not affect the meaning of the code (Eg: adding white-space, formatting, missing semi-colons, etc)test
: Adding missing tests or correcting existing tests
git commit -m "fix textfield" # fails
git commit -m "fix: fix textfield" # passes
- Only import on main.scss
- On child folder, import child file to
*-dir.scss
, and import*-dir.scss
inmain.scss
Example :
_utils.scss
@import 'variables.scss' # Sass Variables
@import 'functions.scss' # Sass Functions
@import 'mixins.scss' # Sass Mixins
@import 'helpers.scss' # Class & placeholders helpers
main.scss
/*
* Utils
*/
@import './utils/utils-dir';