@jseeio/jsee 0.2.3 → 0.2.4
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 +48 -0
- package/dist/jsee.js +1 -1
- package/dist/jsee.runtime.js +1 -1
- package/dist/worker_bundle.js +1 -0
- package/jest-puppeteer.config.js +12 -0
- package/jest.config.js +7 -0
- package/load.html +8 -4
- package/main.js +286 -170
- package/package.json +11 -6
- package/src/app.js +8 -6
- package/src/utils.js +52 -0
- package/src/worker.js +65 -58
- package/test/code.html +25 -0
- package/test/codew.html +25 -0
- package/test/example-async-function.js +0 -0
- package/test/example-async-init.js +0 -0
- package/test/example-class.js +8 -0
- package/test/example-sum.js +3 -0
- package/test/minimal.html +14 -0
- package/test/string.html +26 -0
- package/test/stringw.html +29 -0
- package/test/sum.schema.json +17 -0
- package/test/sumw.schema.json +17 -0
- package/test.js +121 -0
- package/webpack.config.js +3 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
#### 0.2.4 (2021-12-26)
|
|
2
|
+
|
|
3
|
+
##### Other Changes
|
|
4
|
+
|
|
5
|
+
* jseeio/jsee (ce4229b8)
|
|
6
|
+
|
|
7
|
+
### 0.3.0 (2021-12-26)
|
|
8
|
+
|
|
9
|
+
##### Other Changes
|
|
10
|
+
|
|
11
|
+
* jseeio/jsee (ce4229b8)
|
|
12
|
+
|
|
13
|
+
#### 0.2.3 (2021-12-26)
|
|
14
|
+
|
|
15
|
+
##### Other Changes
|
|
16
|
+
|
|
17
|
+
* jseeio/jsee (ce4229b8)
|
|
18
|
+
|
|
19
|
+
# Change log
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [Unreleased] - yyyy-mm-dd
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
-
|
|
27
|
+
|
|
28
|
+
### Changed
|
|
29
|
+
-
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
-
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
## [0.2.4] - yyyy-mm-dd
|
|
36
|
+
|
|
37
|
+
### Added
|
|
38
|
+
- [x] Tests
|
|
39
|
+
- [x] Load schema from query (loader)
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
- [x] Default input type (`string`)
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
- [x] Directly load code when running in a window (not code to text)
|
|
46
|
+
- [x] Passing code directly
|
|
47
|
+
|
|
48
|
+
|