@kamen/create-webapp 1.0.47 → 1.0.49

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +3 -2
package/index.js CHANGED
@@ -266,7 +266,7 @@ export function findVue(version = 2, root = document, hook = '__VUE_DEVTOOLS_GLO
266
266
  }
267
267
 
268
268
  export class DOMUtils {
269
- static namespaces = class {
269
+ static namespaces = class NameSpaces {
270
270
  static HTML = 'http://www.w3.org/1999/xhtml';
271
271
  static MathML = 'http://www.w3.org/1998/Math/MathML';
272
272
  static SVG = 'http://www.w3.org/2000/svg';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kamen/create-webapp",
3
- "version": "1.0.47",
3
+ "version": "1.0.49",
4
4
  "description": "npm init @kamen/webapp",
5
5
  "keywords": [
6
6
  "init",
@@ -31,6 +31,7 @@
31
31
  "npm": ">=10"
32
32
  },
33
33
  "scripts": {
34
- "test": "echo \"Error: no test specified\" && exit 1"
34
+ "tidyup": "npm prune && npm dedupe && npm prune && npm dedupe",
35
+ "release": "npm version patch && npm publish"
35
36
  }
36
37
  }