-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Delta-321 Quasar Boilerplate > Version > Upgrade to v0.16 (#22)
Approved By: - @cedricabuso - @wilbertverayin * Updated .gitignore * Updated package.json for initial upgrade setup * Updated .babelrc * Updated .eslintrc.js * Added .postcssrc.js * Added PWA setup * Updated .eslintignore * Removed unnecessary files after upgrade * Added esdoc and vue to resolve deps issue * Removed test setup. Use jest later * Removed templates folder - not needed anymore * Initial src setup * Only add proxy options when needed * Ignore .quasar directory * Removed sample module * Updated .editorconfig to follow eslint:vue * Removed quasar assets * Renamed main logo file * Refactor sample quasar app to follow eslint rules * Added vue-router as dependency * Removed sample app to avoid future conflicts * Use strict mode in Vuex when not in prod mode * Updated process.env config * Refactored to follow eslint * Added google analytics integration * Remove default quasar options * Integrated google analytics and build time config * Fix moment build size issue * Updated axios plugin * Added Vuelidate plugin * Added jwt plugin * Added google-api plugin * Use Freedom icon as default PWA icons * Added i18next plugin * Added LanguageSelector component * Add option to disable analyze tool on build * Use only $axios for uniformity * Apply company standards to eslint * Update quasar.conf.js - Uncomment only the plugins you need - PWA manifest depends on package.json fields - manifest.name = pkg.productName - manifest.short_name = pkg.name - manifest.description = pkg.description * Added lodash alias for lodash-es
- Loading branch information
Ferriel Melarpis
authored
May 29, 2018
1 parent
84e3f76
commit 971681b
Showing
104 changed files
with
659 additions
and
2,643 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,31 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"env", | ||
"@babel/preset-env", | ||
{ | ||
"modules": false | ||
"modules": false, | ||
"loose": false, | ||
"useBuiltIns": "usage" | ||
} | ||
], | ||
"stage-2" | ||
[ | ||
"@babel/preset-stage-2", | ||
{ | ||
"modules": false, | ||
"loose": false, | ||
"useBuiltIns": true, | ||
"decoratorsLegacy": true | ||
} | ||
] | ||
], | ||
"plugins": [ | ||
"transform-runtime" | ||
[ | ||
"@babel/transform-runtime", | ||
{ | ||
"polyfill": false, | ||
"regenerator": false | ||
} | ||
] | ||
], | ||
"comments": false, | ||
"env": { | ||
"test": { | ||
"presets": [ | ||
"env", | ||
"stage-2" | ||
], | ||
"plugins": [ | ||
"istanbul" | ||
] | ||
} | ||
} | ||
"comments": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
build/*.js | ||
config/*.js | ||
dist/*.js | ||
/dist | ||
quasar.conf.js | ||
config/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
// https://github.com/michael-ciniawsky/postcss-load-config | ||
|
||
module.exports = { | ||
plugins: [ | ||
// to edit target browsers: use "browserslist" field in package.json | ||
require('autoprefixer') | ||
] | ||
}; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.