ripple 0.3.23 → 0.3.25

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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # ripple
2
2
 
3
+ ## 0.3.25
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies []:
8
+ - ripple@0.3.25
9
+
10
+ ## 0.3.24
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies []:
15
+ - ripple@0.3.24
16
+
3
17
  ## 0.3.23
4
18
 
5
19
  ### Patch 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.23",
6
+ "version": "0.3.25",
7
7
  "type": "module",
8
8
  "module": "src/runtime/index-client.js",
9
9
  "main": "src/runtime/index-client.js",
@@ -87,6 +87,6 @@
87
87
  "@tsrx/core": "0.0.5"
88
88
  },
89
89
  "peerDependencies": {
90
- "ripple": "0.3.23"
90
+ "ripple": "0.3.25"
91
91
  }
92
92
  }
@@ -195,7 +195,7 @@ describe('basic client > errors', () => {
195
195
  `;
196
196
  expect(() => {
197
197
  compile(code, 'test.tsrx', { mode: 'client' });
198
- }).toThrow('`await` is not allowed inside client components');
198
+ }).toThrow(/`await` is not allowed inside components\./);
199
199
  });
200
200
 
201
201
  it('should throw error for while loop inside a component', () => {