quasar-factory-lib 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/main.ts +1 -1
package/package.json
CHANGED
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"./dist": "./dist",
|
|
66
66
|
"./index.ts": "./src/index.ts",
|
|
67
67
|
"./src": "./src",
|
|
68
|
-
"./style.css": "./src/css/app.
|
|
68
|
+
"./style.css": "./src/css/app.css",
|
|
69
69
|
"./types": "./dist/index.d.ts",
|
|
70
70
|
"./dist/i18n/messages": "./dist/i18n/messages"
|
|
71
71
|
},
|
|
@@ -102,5 +102,5 @@
|
|
|
102
102
|
"release": "standard-version"
|
|
103
103
|
},
|
|
104
104
|
"type": "module",
|
|
105
|
-
"version": "0.0.
|
|
105
|
+
"version": "0.0.7"
|
|
106
106
|
}
|
package/src/main.ts
CHANGED
|
@@ -14,7 +14,7 @@ import 'quasar/src/css/index.sass'
|
|
|
14
14
|
// and placed in same folder as main.js
|
|
15
15
|
import { QuasarFactoryLib } from '.'
|
|
16
16
|
import App from './App.vue'
|
|
17
|
-
import './css/app.
|
|
17
|
+
import './css/app.css'
|
|
18
18
|
import i18n from './i18n'
|
|
19
19
|
|
|
20
20
|
const myApp = createApp(App)
|