spyne 0.20.0 → 0.20.1

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.
@@ -0,0 +1,16 @@
1
+ /*!
2
+ * Spyne 0.20.1
3
+ * https://spynejs.org
4
+ *
5
+ * @license Copyright 2017-2021, Frank Batista, Relevant Context, LLC. All rights reserved.
6
+ * Spyne is licensed under the GNU Lesser General Public License v3.0
7
+ *
8
+ * @author: Frank Batista,
9
+ * @email: frbatista.nyc@gmail.com
10
+ */
11
+
12
+ /*!
13
+ * spynejs 0.20.1
14
+ * https://spynejs.org
15
+ * (c) 2017-present Frank Batista
16
+ */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spyne",
3
- "version": "0.20.0",
3
+ "version": "0.20.1",
4
4
  "description": "Reactive Real-DOM Framework for Advanced Javascript applications",
5
5
  "sideEffects": true,
6
6
  "main": "./lib/spyne.umd.js",
@@ -25,7 +25,8 @@
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
27
  "esdocs": "esdoc -d esdocs -c esdocs/esdoc.config.json -r",
28
- "test": "karma start --browsers Chrome",
28
+ "test": "karma start karma.conf.js",
29
+ "test:single": "karma start karma.conf.js --single-run",
29
30
  "watch:test": "npm test -- --auto-watch --no-single-run",
30
31
  "test:mocha": "mocha tests",
31
32
  "lint": "eslint 'src/spyne/**' --fix"
@@ -43,7 +44,7 @@
43
44
  "Single-Page-Application Framework"
44
45
  ],
45
46
  "author": "Frank Batista",
46
- "license": "UNLICENSED",
47
+ "license": "LGPL",
47
48
  "devDependencies": {
48
49
  "@rollup/plugin-commonjs": "^28.0.2",
49
50
  "@rollup/plugin-json": "^6.1.0",
@@ -5,7 +5,7 @@ import { SpyneAppProperties } from './utils/spyne-app-properties'
5
5
  import { sanitizeHTMLConfigure } from './utils/sanitize-html'
6
6
 
7
7
  const _channels = new ChannelsMap()
8
- const version = '0.20.0'
8
+ const version = '0.20.1'
9
9
 
10
10
  class SpyneApplication {
11
11
  /**
@@ -42,7 +42,7 @@ class SpyneApplication {
42
42
  init(config = {}, testMode = false) {
43
43
  // this.channels = new ChannelsMap();
44
44
  /*!
45
- * Spyne 0.20.0
45
+ * Spyne 0.20.1
46
46
  * https://spynejs.org
47
47
  *
48
48
  * @license Copyright 2017-2021, Frank Batista, Relevant Context, LLC. All rights reserved.