spyne 0.20.16 → 0.20.19

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Spyne 0.20.15
2
+ * Spyne 0.20.19
3
3
  * https://spynejs.org
4
4
  *
5
5
  * @license
@@ -15,7 +15,7 @@
15
15
  */
16
16
 
17
17
  /*!
18
- * spynejs 0.20.16
18
+ * spynejs 0.20.19
19
19
  * https://spynejs.org
20
20
  * (c) 2017-present Frank Batista
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spyne",
3
- "version": "0.20.16",
3
+ "version": "0.20.19",
4
4
  "description": "Reactive Real-DOM Framework for Advanced Javascript applications",
5
5
  "sideEffects": true,
6
6
  "main": "./lib/spyne.esm.js",
@@ -24,12 +24,13 @@
24
24
  "dev": "webpack --config webpack.config.js --mode development",
25
25
  "stats": "webpack --profile --json --optimize-minimize --mode production --env build > stats.json",
26
26
  "docs": "jsdoc --readme README.md -d docs -c docs/jsdoc.config.json -r",
27
- "esdocs": "esdoc -d esdocs -c esdocs/esdoc.config.json -r",
27
+ "esdocs": "esdoc -d esdocs -c esdocs/esdoc.config.json -r",
28
28
  "test": "karma start karma.conf.js",
29
29
  "test:single": "karma start karma.conf.js --single-run",
30
30
  "watch:test": "npm test -- --auto-watch --no-single-run",
31
31
  "test:mocha": "mocha tests",
32
32
  "lint": "eslint 'src/spyne/**' --fix",
33
+ "verify:dist": "test -f lib/spyne.esm.js && test -f lib/spyne.umd.js",
33
34
  "prepare": "husky"
34
35
  },
35
36
  "repository": {
@@ -6,7 +6,7 @@ import { sanitizeHTMLConfigure } from './utils/sanitize-html.js'
6
6
  import { sanitizeDataConfigure } from './utils/sanitize-data.js'
7
7
 
8
8
  const _channels = new ChannelsMap()
9
- const version = '0.20.15'
9
+ const version = '0.20.19'
10
10
 
11
11
  class SpyneApplication {
12
12
  /**
@@ -43,7 +43,7 @@ class SpyneApplication {
43
43
  init(config = {}, testMode = false) {
44
44
  // this.channels = new ChannelsMap();
45
45
  /*!
46
- * Spyne 0.20.15
46
+ * Spyne 0.20.19
47
47
  * https://spynejs.org
48
48
  *
49
49
  * @license