Skip to content

Commit 5b3526d

Browse files
committed
added verify:dist check for esm and umd build, updated to 0.20.19
1 parent dbf3685 commit 5b3526d

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spyne",
3-
"version": "0.20.18",
3+
"version": "0.20.19",
44
"description": "Reactive Real-DOM Framework for Advanced Javascript applications",
55
"sideEffects": true,
66
"main": "./lib/spyne.esm.js",
@@ -24,12 +24,13 @@
2424
"dev": "webpack --config webpack.config.js --mode development",
2525
"stats": "webpack --profile --json --optimize-minimize --mode production --env build > stats.json",
2626
"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",
2828
"test": "karma start karma.conf.js",
2929
"test:single": "karma start karma.conf.js --single-run",
3030
"watch:test": "npm test -- --auto-watch --no-single-run",
3131
"test:mocha": "mocha tests",
3232
"lint": "eslint 'src/spyne/**' --fix",
33+
"verify:dist": "test -f lib/spyne.esm.js && test -f lib/spyne.umd.js",
3334
"prepare": "husky"
3435
},
3536
"repository": {

src/spyne/spyne-app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { sanitizeHTMLConfigure } from './utils/sanitize-html.js'
66
import { sanitizeDataConfigure } from './utils/sanitize-data.js'
77

88
const _channels = new ChannelsMap()
9-
const version = '0.20.18'
9+
const version = '0.20.19'
1010

1111
class SpyneApplication {
1212
/**
@@ -43,7 +43,7 @@ class SpyneApplication {
4343
init(config = {}, testMode = false) {
4444
// this.channels = new ChannelsMap();
4545
/*!
46-
* Spyne 0.20.18
46+
* Spyne 0.20.19
4747
* https://spynejs.org
4848
*
4949
* @license

0 commit comments

Comments
 (0)