create-quasar 1.0.14 → 1.0.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-quasar",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Scaffolds Quasar Apps, AppExtensions or UI kits",
5
5
  "author": {
6
6
  "name": "Razvan Stoenescu",
@@ -4,4 +4,3 @@
4
4
  /.quasar
5
5
  /node_modules
6
6
  .eslintrc.js
7
- babel.config.js
@@ -15,6 +15,5 @@
15
15
  "experimentalDecorators": true,
16
16
  "useDefineForClassFields": true<% } %>
17
17
  },
18
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
19
- "references": [{ "path": "./tsconfig.node.json" }]
18
+ "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
20
19
  }
@@ -82,7 +82,7 @@ module.exports = configure(function (ctx) {
82
82
 
83
83
  // https://v2.quasar.dev/quasar-cli-webpack/handling-webpack
84
84
  // "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
85
- chainWebpack (/* chain */) {}
85
+ // chainWebpack (/* chain */) {}
86
86
  },
87
87
 
88
88
  // Full list of options: https://v2.quasar.dev/quasar-cli-webpack/quasar-config-js#Property%3A-devServer
@@ -129,7 +129,7 @@ module.exports = configure(function (ctx) {
129
129
  maxAge: 1000 * 60 * 60 * 24 * 30,
130
130
  // Tell browser when a file from the server should expire from cache (in ms)
131
131
 
132
- chainWebpackWebserver (/* chain */) {},
132
+ // chainWebpackWebserver (/* chain */) {},
133
133
 
134
134
  middlewares: [
135
135
  ctx.prod ? 'compression' : '',
@@ -144,7 +144,7 @@ module.exports = configure(function (ctx) {
144
144
 
145
145
  // for the custom service worker ONLY (/src-pwa/custom-service-worker.[js|ts])
146
146
  // if using workbox in InjectManifest mode
147
- chainWebpackCustomSW (/* chain */) {},
147
+ // chainWebpackCustomSW (/* chain */) {},
148
148
 
149
149
  manifest: {
150
150
  name: `<%= productName %>`,
@@ -1,7 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "composite": true,
4
- "module": "esnext",
5
- "moduleResolution": "node"
6
- }
7
- }