svelte-common 4.22.18 → 4.22.19

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.22.18",
3
+ "version": "4.22.19",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -41,10 +41,10 @@
41
41
  "@semantic-release/exec": "^6.0.3",
42
42
  "@semantic-release/release-notes-generator": "^11.0.1",
43
43
  "@sveltejs/vite-plugin-svelte": "^2.3.0",
44
- "ava": "^5.2.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.55",
48
48
  "npm-pkgbuild": "^11.8.6",
49
49
  "semantic-release": "^21.0.2",
50
50
  "stylelint": "^15.6.2",
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 = "";