spyne 0.20.7 → 0.20.8
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/README.md +49 -17
- package/lib/spyne.esm.js +2 -2
- package/lib/spyne.esm.js.map +1 -1
- package/lib/spyne.umd.js +2 -2
- package/lib/spyne.umd.js.LICENSE.txt +2 -2
- package/package.json +3 -3
- package/src/spyne/spyne-app.js +2 -2
- package/src/tests/package-json.spec.test.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spyne",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.8",
|
|
4
4
|
"description": "Reactive Real-DOM Framework for Advanced Javascript applications",
|
|
5
5
|
"sideEffects": true,
|
|
6
6
|
"main": "./lib/spyne.esm.js",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"JavaScript Framework",
|
|
45
45
|
"Single-Page-Application Framework"
|
|
46
46
|
],
|
|
47
|
-
"
|
|
48
|
-
"
|
|
47
|
+
"license": "LGPL-3.0",
|
|
48
|
+
"author": "Frank Batista <frank@spynejs.com> (Relevant Context, Inc.)",
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@rollup/plugin-commonjs": "^28.0.2",
|
|
51
51
|
"@rollup/plugin-json": "^6.1.0",
|
package/src/spyne/spyne-app.js
CHANGED
|
@@ -5,7 +5,7 @@ import { SpyneAppProperties } from './utils/spyne-app-properties.js'
|
|
|
5
5
|
import { sanitizeHTMLConfigure } from './utils/sanitize-html.js'
|
|
6
6
|
|
|
7
7
|
const _channels = new ChannelsMap()
|
|
8
|
-
const version = '0.20.
|
|
8
|
+
const version = '0.20.8'
|
|
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.
|
|
45
|
+
* Spyne 0.20.8
|
|
46
46
|
* https://spynejs.org
|
|
47
47
|
*
|
|
48
48
|
* @license
|
|
@@ -15,6 +15,6 @@ describe('package.json export import statement', () => {
|
|
|
15
15
|
|
|
16
16
|
(isPublic ? describe : describe.skip)('license should be LGPL', () => {
|
|
17
17
|
it('should have LGPL as license', () => {
|
|
18
|
-
expect(pkg.license).to.equal('LGPL');
|
|
18
|
+
expect(pkg.license).to.equal('LGPL-3.0');
|
|
19
19
|
});
|
|
20
20
|
});
|