svelte-entitlement 1.2.31 → 1.2.33
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 +1 -1
- package/package.json +30 -16
package/README.md
CHANGED
|
@@ -25,4 +25,4 @@
|
|
|
25
25
|
|
|
26
26
|
### Parameters
|
|
27
27
|
|
|
28
|
-
* `data` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | [Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object))
|
|
28
|
+
* `data` **([string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String) | [Object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object))** 
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "svelte-entitlement",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.33",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -15,34 +15,34 @@
|
|
|
15
15
|
"prepare": "vite build",
|
|
16
16
|
"start": "vite",
|
|
17
17
|
"test": "npm run test:ava && npm run test:cafe",
|
|
18
|
-
"test:ava": "ava --timeout 2m tests
|
|
18
|
+
"test:ava": "ava --timeout 2m tests/*-ava.mjs tests/*-ava-node.mjs",
|
|
19
19
|
"test:cafe": "testcafe $BROWSER:headless tests/cafe/*.js -s build/test --page-request-timeout 3000 --app-init-delay 3000 --app \"vite preview\"",
|
|
20
|
-
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m tests
|
|
20
|
+
"cover": "c8 -x 'tests/**/*' --temp-directory build/tmp ava --timeout 2m tests/*-ava.mjs tests/*-ava-node.mjs && c8 report -r lcov -o build/coverage --temp-directory build/tmp",
|
|
21
21
|
"docs": "documentation readme --section=API ./src/**/*.mjs",
|
|
22
22
|
"lint": "npm run lint:docs",
|
|
23
23
|
"lint:docs": "documentation lint ./src/**/*.mjs",
|
|
24
24
|
"preview": "vite preview"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"svelte-dnd-action": "^0.9.
|
|
27
|
+
"svelte-dnd-action": "^0.9.21"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@semantic-release/commit-analyzer": "^9.0.2",
|
|
31
31
|
"@semantic-release/exec": "^6.0.3",
|
|
32
32
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
33
|
-
"@sveltejs/vite-plugin-svelte": "^1.0.
|
|
34
|
-
"ava": "^
|
|
33
|
+
"@sveltejs/vite-plugin-svelte": "^1.0.9",
|
|
34
|
+
"ava": "^5.0.1",
|
|
35
35
|
"c8": "^7.12.0",
|
|
36
|
-
"documentation": "^
|
|
37
|
-
"mf-styling": "^1.
|
|
38
|
-
"npm-pkgbuild": "^10.
|
|
39
|
-
"semantic-release": "^19.0.
|
|
40
|
-
"svelte": "^3.
|
|
41
|
-
"testcafe": "^
|
|
42
|
-
"vite": "^3.
|
|
36
|
+
"documentation": "^14.0.0",
|
|
37
|
+
"mf-styling": "^1.7.23",
|
|
38
|
+
"npm-pkgbuild": "^10.15.9",
|
|
39
|
+
"semantic-release": "^19.0.5",
|
|
40
|
+
"svelte": "^3.52.0",
|
|
41
|
+
"testcafe": "^2.0.1",
|
|
42
|
+
"vite": "^3.1.8"
|
|
43
43
|
},
|
|
44
44
|
"optionalDependencies": {
|
|
45
|
-
"mf-hosting": "^1.7.
|
|
45
|
+
"mf-hosting": "^1.7.4"
|
|
46
46
|
},
|
|
47
47
|
"repository": {
|
|
48
48
|
"type": "git",
|
|
@@ -68,10 +68,24 @@
|
|
|
68
68
|
[
|
|
69
69
|
"@semantic-release/exec",
|
|
70
70
|
{
|
|
71
|
-
"publishCmd": "npx npm-pkgbuild --available --continue
|
|
71
|
+
"publishCmd": "npx npm-pkgbuild --available --continue"
|
|
72
72
|
}
|
|
73
73
|
],
|
|
74
|
-
|
|
74
|
+
[
|
|
75
|
+
"@semantic-release/github",
|
|
76
|
+
{
|
|
77
|
+
"assets": [
|
|
78
|
+
{
|
|
79
|
+
"path": "dist/*.deb",
|
|
80
|
+
"label": "Debian Package"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"path": "dist/*.pkg.*",
|
|
84
|
+
"label": "Arch Linux Package"
|
|
85
|
+
}
|
|
86
|
+
]
|
|
87
|
+
}
|
|
88
|
+
]
|
|
75
89
|
]
|
|
76
90
|
},
|
|
77
91
|
"template": {
|