svelte-common 4.22.18 → 4.22.20

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 CHANGED
@@ -74,8 +74,6 @@ Split property path into tokens
74
74
 
75
75
  * `string` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** 
76
76
 
77
- Returns **Iterator<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>**&#x20;
78
-
79
77
  ## setAttribute
80
78
 
81
79
  Set Object attribute.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svelte-common",
3
- "version": "4.22.18",
3
+ "version": "4.22.20",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -40,22 +40,22 @@
40
40
  "@semantic-release/commit-analyzer": "^9.0.2",
41
41
  "@semantic-release/exec": "^6.0.3",
42
42
  "@semantic-release/release-notes-generator": "^11.0.1",
43
- "@sveltejs/vite-plugin-svelte": "^2.3.0",
44
- "ava": "^5.2.0",
43
+ "@sveltejs/vite-plugin-svelte": "^2.4.0",
44
+ "ava": "^5.3.0",
45
45
  "c8": "^7.13.0",
46
46
  "documentation": "^14.0.2",
47
- "mf-styling": "^1.7.54",
47
+ "mf-styling": "^1.7.56",
48
48
  "npm-pkgbuild": "^11.8.6",
49
49
  "semantic-release": "^21.0.2",
50
50
  "stylelint": "^15.6.2",
51
51
  "stylelint-config-standard": "^33.0.0",
52
52
  "svelte": "^3.59.1",
53
53
  "testcafe": "^2.6.0",
54
- "vite": "^4.3.8"
54
+ "vite": "^4.3.9"
55
55
  },
56
56
  "optionalDependencies": {
57
57
  "mf-hosting-cloudflare": "^1.0.5",
58
- "mf-hosting-frontend": "^1.9.2"
58
+ "mf-hosting-frontend": "^1.9.3"
59
59
  },
60
60
  "repository": {
61
61
  "type": "git",
package/src/attribute.mjs CHANGED
@@ -15,8 +15,9 @@
15
15
 
16
16
  /**
17
17
  * Split property path into tokens
18
+ * @generator
18
19
  * @param {string} string
19
- * @return {Iterator<string>}
20
+ * @yields {string}
20
21
  */
21
22
  export function* tokens(string) {
22
23
  let identifier = "";