ripple 0.3.0 → 0.3.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/CHANGELOG.md +13 -0
- package/package.json +2 -2
- package/src/runtime/internal/client/index.js +1 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# ripple
|
|
2
2
|
|
|
3
|
+
## 0.3.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#799](https://github.com/Ripple-TS/ripple/pull/799)
|
|
8
|
+
[`87c2078`](https://github.com/Ripple-TS/ripple/commit/87c20780f6f6f7339cf94b9a9d08e028533df0a2)
|
|
9
|
+
Thanks [@leonidaz](https://github.com/leonidaz)! - Fix imports for removed
|
|
10
|
+
functions
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
[[`87c2078`](https://github.com/Ripple-TS/ripple/commit/87c20780f6f6f7339cf94b9a9d08e028533df0a2)]:
|
|
14
|
+
- ripple@0.3.1
|
|
15
|
+
|
|
3
16
|
## 0.3.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Ripple is an elegant TypeScript UI framework",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"author": "Dominic Gannaway",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.1",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "src/runtime/index-client.js",
|
|
9
9
|
"main": "src/runtime/index-client.js",
|
|
@@ -105,6 +105,6 @@
|
|
|
105
105
|
"vscode-languageserver-types": "^3.17.5"
|
|
106
106
|
},
|
|
107
107
|
"peerDependencies": {
|
|
108
|
-
"ripple": "0.3.
|
|
108
|
+
"ripple": "0.3.1"
|
|
109
109
|
}
|
|
110
110
|
}
|
|
@@ -80,12 +80,7 @@ export { switch_block as switch } from './switch.js';
|
|
|
80
80
|
|
|
81
81
|
export { template, append, text } from './template.js';
|
|
82
82
|
|
|
83
|
-
export {
|
|
84
|
-
ripple_array,
|
|
85
|
-
ripple_array_from,
|
|
86
|
-
ripple_array_of,
|
|
87
|
-
ripple_array_from_async,
|
|
88
|
-
} from '../../array.js';
|
|
83
|
+
export { ripple_array } from '../../array.js';
|
|
89
84
|
|
|
90
85
|
export { ripple_object } from '../../object.js';
|
|
91
86
|
|