svelte-common 4.21.22 → 4.21.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-common",
3
- "version": "4.21.22",
3
+ "version": "4.21.24",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -44,8 +44,8 @@
44
44
  "ava": "^5.1.1",
45
45
  "c8": "^7.12.0",
46
46
  "documentation": "^14.0.1",
47
- "mf-styling": "^1.7.37",
48
- "npm-pkgbuild": "^11.1.7",
47
+ "mf-styling": "^1.7.39",
48
+ "npm-pkgbuild": "^11.1.10",
49
49
  "semantic-release": "^20.1.0",
50
50
  "stylelint": "^14.16.1",
51
51
  "stylelint-config-standard": "^29.0.0",
@@ -55,7 +55,7 @@
55
55
  },
56
56
  "optionalDependencies": {
57
57
  "mf-hosting-cloudflare": "^1.0.5",
58
- "mf-hosting-frontend": "^1.5.2"
58
+ "mf-hosting-frontend": "^1.6.0"
59
59
  },
60
60
  "repository": {
61
61
  "type": "git",
@@ -69,6 +69,7 @@
69
69
  "content": {
70
70
  "${install.dir}": "build/"
71
71
  },
72
+ "csp.script-src": "script-src https://unpkg.com/;",
72
73
  "example": true,
73
74
  "frontend": true
74
75
  },
package/src/filter.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  import { getAttribute } from "./util.mjs";
2
2
 
3
3
  /**
4
- * Generate filter function
4
+ * Generate filter function.
5
5
  * @param {Object} filterBy
6
6
  * @param {Object} getters
7
7
  * @returns {Function}
package/src/util.mjs CHANGED
@@ -166,7 +166,7 @@ export function keyPrefixStore(store, prefix) {
166
166
  }
167
167
 
168
168
  /**
169
- * Split property path into tokens
169
+ * Split property path into tokens.
170
170
  * @param {string} string
171
171
  * @return {Iterator<string>}
172
172
  */