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.
- package/.eslintignore +2 -0
- package/.travis.yml +6 -6
- package/karma.conf.js +1 -1
- package/lib/spyne.esm.js +4 -4
- package/lib/spyne.esm.js.map +1 -1
- package/lib/spyne.js +248 -248
- package/lib/spyne.umd.js +3 -9565
- package/lib/spyne.umd.js.LICENSE.txt +16 -0
- package/package.json +4 -3
- package/src/spyne/spyne-app.js +2 -2
package/.eslintignore
ADDED
package/.travis.yml
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
# .travis.yml
|
|
2
|
-
dist: jammy
|
|
2
|
+
dist: jammy
|
|
3
3
|
language: node_js
|
|
4
4
|
|
|
5
5
|
node_js:
|
|
6
6
|
- '16'
|
|
7
7
|
- '18'
|
|
8
|
-
|
|
8
|
+
# Removed 'node' to avoid testing the very latest (which may require npm >= 11)
|
|
9
9
|
|
|
10
10
|
services:
|
|
11
|
-
- xvfb
|
|
11
|
+
- xvfb # If you need a browser environment
|
|
12
12
|
|
|
13
13
|
cache:
|
|
14
14
|
npm: true
|
|
15
15
|
|
|
16
|
-
before_install:
|
|
17
|
-
|
|
16
|
+
# before_install:
|
|
17
|
+
# - npm install -g npm@latest # Removed or commented out to avoid engine mismatch
|
|
18
18
|
|
|
19
19
|
install:
|
|
20
20
|
- npm ci
|
|
@@ -27,4 +27,4 @@ notifications:
|
|
|
27
27
|
|
|
28
28
|
branches:
|
|
29
29
|
only:
|
|
30
|
-
- main
|
|
30
|
+
- main
|