create-quasar 1.0.14 → 1.0.17

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.17",
4
4
  "description": "Scaffolds Quasar Apps, AppExtensions or UI kits",
5
5
  "author": {
6
6
  "name": "Razvan Stoenescu",
@@ -1,7 +1,7 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
- <title><% '\<%= productName %\>' %></title>
4
+ <title><%= '\<%= productName %\>' %></title>
5
5
 
6
6
  <meta charset="utf-8">
7
7
  <meta name="description" content="<%= '\<%= productDescription %\>' %>">
@@ -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
  }
@@ -120,7 +120,7 @@ module.exports = {
120
120
  // in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
121
121
  '@typescript-eslint/no-var-requires': 'off',
122
122
 
123
- // The core 'no-unused-vars' rules (in the eslint:recommeded ruleset)
123
+ // The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
124
124
  // does not work with type definitions
125
125
  'no-unused-vars': 'off',
126
126
 
@@ -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 %>`,
@@ -124,7 +124,7 @@ module.exports = {
124
124
  // in plain CommonJS modules, you can't use `import foo = require('foo')` to pass this rule, so it has to be disabled
125
125
  '@typescript-eslint/no-var-requires': 'off',
126
126
 
127
- // The core 'no-unused-vars' rules (in the eslint:recommeded ruleset)
127
+ // The core 'no-unused-vars' rules (in the eslint:recommended ruleset)
128
128
  // does not work with type definitions
129
129
  'no-unused-vars': 'off',
130
130
 
@@ -1,7 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "composite": true,
4
- "module": "esnext",
5
- "moduleResolution": "node"
6
- }
7
- }