File tree Expand file tree Collapse file tree 2 files changed +17
-13
lines changed Expand file tree Collapse file tree 2 files changed +17
-13
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " quasar-app-extension-qiconpicker" ,
33 "version" : " 1.0.4" ,
4- "description" : " A Quasar App Extension" ,
4+ "description" : " QIconPicker - A Quasar App Extension" ,
55 "author" :
" Jeff Galbraith <[email protected] >" ,
66 "license" : " MIT" ,
77 "main" : " src/index.js" ,
8+ "scripts" : {
9+ "lint" : " eslint --ext .js,.vue src" ,
10+ "lint-fix" : " eslint --ext .js,.vue src --fix"
11+ },
812 "publishConfig" : {
913 "access" : " public"
1014 },
11- "bugs" : " https://github.com/quasarframework/app-extension -qiconpicker/issues" ,
15+ "bugs" : " https://github.com/quasarframework/quasar-ui -qiconpicker/issues" ,
1216 "repository" : {
1317 "type" : " git" ,
14- "url" : " git+https://github.com/quasarframework/app-extension-qiconpicker.git"
18+ "url" : " git+https://github.com/quasarframework/quasar-ui-qiconpicker.git"
19+ },
20+ "homepage" : " https://github.com/quasarframework/quasar-ui-qiconpicker" ,
21+ "engines" : {
22+ "node" : " >= 8.9.0" ,
23+ "npm" : " >= 5.6.0" ,
24+ "yarn" : " >= 1.6.0"
1525 },
16- "homepage" : " https://github.com/quasarframework/app-extension-qiconpicker" ,
1726 "dependencies" : {
18- "quasar-ui-qiconpicker" : " latest"
27+ "@quasar/ quasar-ui-qiconpicker" : " latest"
1928 },
2029 "devDependencies" : {
2130 "@vue/eslint-config-standard" : " ^4.0.0" ,
2231 "babel-eslint" : " ^10.0.3" ,
2332 "eslint" : " ^6.4.0" ,
2433 "eslint-loader" : " ^3.0.2" ,
2534 "eslint-plugin-vue" : " ^5.2.3"
26- },
27- "engines" : {
28- "node" : " >= 8.9.0" ,
29- "npm" : " >= 5.6.0" ,
30- "yarn" : " >= 1.6.0"
3135 }
3236}
Original file line number Diff line number Diff line change 88
99function extendConf ( conf ) {
1010 // register our boot file
11- conf . boot . push ( '~quasar-app-extension-qiconpicker/src/boot/register.js' )
11+ conf . boot . push ( '~@quasar/ quasar-app-extension-qiconpicker/src/boot/register.js' )
1212
1313 // make sure app extension files & ui package gets transpiled
1414 conf . build . transpileDependencies . push ( / q u a s a r - a p p - e x t e n s i o n - q i c o n p i c k e r [ \\ / ] s r c / )
1515
1616 // make sure the stylesheet goes through webpack to avoid SSR issues
17- conf . css . push ( '~quasar-ui-qiconpicker/src/index.sass' )
17+ conf . css . push ( '~@quasar/ quasar-ui-qiconpicker/src/index.sass' )
1818}
1919
2020module . exports = function ( api ) {
@@ -25,7 +25,7 @@ module.exports = function (api) {
2525 api . compatibleWith ( '@quasar/app' , '^1.1.0' )
2626
2727 // Uncomment the line below if you provide a JSON API for your component
28- // api.registerDescribeApi('QIconPicker', '~quasar-ui-qiconpicker/src/component/QIconPicker.json')
28+ api . registerDescribeApi ( 'QIconPicker' , '~@quasar/ quasar-ui-qiconpicker/src/component/QIconPicker.json' )
2929
3030 // We extend /quasar.conf.js
3131 api . extendQuasarConf ( extendConf )
You can’t perform that action at this time.
0 commit comments