diff --git a/.changeset/angry-birds-attack.md b/.changeset/angry-birds-attack.md deleted file mode 100644 index 4eaf3ba2..00000000 --- a/.changeset/angry-birds-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rekajs/core': patch ---- - -Cache root template in component evaluation diff --git a/.changeset/four-lemons-report.md b/.changeset/four-lemons-report.md deleted file mode 100644 index a4ce216e..00000000 --- a/.changeset/four-lemons-report.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@rekajs/react-code-editor': patch -'@rekajs/utils': patch -'@rekajs/core': patch ---- - -Remove lodash dep diff --git a/.changeset/seven-papayas-jump.md b/.changeset/seven-papayas-jump.md deleted file mode 100644 index 7337a1df..00000000 --- a/.changeset/seven-papayas-jump.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@rekajs/parser': patch -'@rekajs/types': patch -'@rekajs/core': patch ---- - -Enable component prop bindings diff --git a/.changeset/twenty-deers-swim.md b/.changeset/twenty-deers-swim.md deleted file mode 100644 index 06094476..00000000 --- a/.changeset/twenty-deers-swim.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@rekajs/types': patch -'@rekajs/core': patch ---- - -Require prop definition for External Components -Support 2 way bindings and classlist directives in External Components diff --git a/packages/collaboration/package.json b/packages/collaboration/package.json index 039a30df..c36eba5a 100644 --- a/packages/collaboration/package.json +++ b/packages/collaboration/package.json @@ -14,7 +14,7 @@ "author": "Prev Wong", "license": "MIT", "dependencies": { - "@rekajs/utils": "^0.1.2" + "@rekajs/utils": "^0.1.3" }, "peerDependencies": { "@rekajs/core": ">=0.1.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 3a8f1dd4..ca85fb30 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,20 @@ # @rekajs/core +## 0.1.22 + +### Patch Changes + +- [#109](https://github.com/prevwong/reka.js/pull/109) [`e76ffc3`](https://github.com/prevwong/reka.js/commit/e76ffc36b68b015636f920783ea4a4909d9fd77d) Thanks [@prevwong](https://github.com/prevwong)! - Cache root template in component evaluation + +- [`c9cd8b5`](https://github.com/prevwong/reka.js/commit/c9cd8b5ce64922e91a85e001fa62305e964ec5d6) Thanks [@prevwong](https://github.com/prevwong)! - Remove lodash dep + +- [#111](https://github.com/prevwong/reka.js/pull/111) [`b54562e`](https://github.com/prevwong/reka.js/commit/b54562e0e6a5737a04ca907dad36ce65048cc568) Thanks [@prevwong](https://github.com/prevwong)! - Enable component prop bindings + +- [#112](https://github.com/prevwong/reka.js/pull/112) [`e2f00d4`](https://github.com/prevwong/reka.js/commit/e2f00d45d01f633fce9477505706f5689baf2326) Thanks [@prevwong](https://github.com/prevwong)! - Require prop definition for External Components + Support 2 way bindings and classlist directives in External Components +- Updated dependencies [[`c9cd8b5`](https://github.com/prevwong/reka.js/commit/c9cd8b5ce64922e91a85e001fa62305e964ec5d6)]: + - @rekajs/utils@0.1.3 + ## 0.1.21 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index c071d403..55fb09cc 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/core", - "version": "0.1.21", + "version": "0.1.22", "description": "State management system for building no-code page editors", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -21,7 +21,7 @@ "@rekajs/types": ">=0.1.0" }, "dependencies": { - "@rekajs/utils": "^0.1.2", + "@rekajs/utils": "^0.1.3", "mobx": "^6.3.13", "mobx-utils": "^6.0.6" }, diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md index c8f14e6d..2b4930af 100644 --- a/packages/parser/CHANGELOG.md +++ b/packages/parser/CHANGELOG.md @@ -1,5 +1,14 @@ # @rekajs/parser +## 0.1.13 + +### Patch Changes + +- [#111](https://github.com/prevwong/reka.js/pull/111) [`b54562e`](https://github.com/prevwong/reka.js/commit/b54562e0e6a5737a04ca907dad36ce65048cc568) Thanks [@prevwong](https://github.com/prevwong)! - Enable component prop bindings + +- Updated dependencies [[`c9cd8b5`](https://github.com/prevwong/reka.js/commit/c9cd8b5ce64922e91a85e001fa62305e964ec5d6)]: + - @rekajs/utils@0.1.3 + ## 0.1.12 ### Patch Changes diff --git a/packages/parser/package.json b/packages/parser/package.json index 71a51009..3d37e887 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/parser", - "version": "0.1.12", + "version": "0.1.13", "description": "Parser for Reka syntax", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -20,7 +20,7 @@ }, "dependencies": { "@babel/types": "^7.18.13", - "@rekajs/utils": "^0.1.2", + "@rekajs/utils": "^0.1.3", "acorn": "^8.7.0", "acorn-jsx": "^5.3.2" }, diff --git a/packages/react-code-editor/CHANGELOG.md b/packages/react-code-editor/CHANGELOG.md index 0890078a..dbbbbed0 100644 --- a/packages/react-code-editor/CHANGELOG.md +++ b/packages/react-code-editor/CHANGELOG.md @@ -1,5 +1,14 @@ # @rekajs/react-code-editor +## 0.1.6 + +### Patch Changes + +- [`c9cd8b5`](https://github.com/prevwong/reka.js/commit/c9cd8b5ce64922e91a85e001fa62305e964ec5d6) Thanks [@prevwong](https://github.com/prevwong)! - Remove lodash dep + +- Updated dependencies [[`c9cd8b5`](https://github.com/prevwong/reka.js/commit/c9cd8b5ce64922e91a85e001fa62305e964ec5d6)]: + - @rekajs/utils@0.1.3 + ## 0.1.5 ### Patch Changes diff --git a/packages/react-code-editor/package.json b/packages/react-code-editor/package.json index 90302df1..ce33a4a9 100644 --- a/packages/react-code-editor/package.json +++ b/packages/react-code-editor/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/react-code-editor", - "version": "0.1.5", + "version": "0.1.6", "description": "Codemirror editor for editing Reka AST in code", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -25,7 +25,7 @@ "@codemirror/theme-one-dark": "^6.1.1", "@codemirror/view": "^6.9.3", "@rekajs/codemirror": ">=0.1.2", - "@rekajs/utils": ">=0.1.2", + "@rekajs/utils": ">=0.1.3", "codemirror": "^6.0.1", "mobx": "^6.3.13", "mobx-react-lite": "^3.3.0" diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 17fec21e..68692f3d 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,16 @@ # @rekajs/types +## 0.1.16 + +### Patch Changes + +- [#111](https://github.com/prevwong/reka.js/pull/111) [`b54562e`](https://github.com/prevwong/reka.js/commit/b54562e0e6a5737a04ca907dad36ce65048cc568) Thanks [@prevwong](https://github.com/prevwong)! - Enable component prop bindings + +- [#112](https://github.com/prevwong/reka.js/pull/112) [`e2f00d4`](https://github.com/prevwong/reka.js/commit/e2f00d45d01f633fce9477505706f5689baf2326) Thanks [@prevwong](https://github.com/prevwong)! - Require prop definition for External Components + Support 2 way bindings and classlist directives in External Components +- Updated dependencies [[`c9cd8b5`](https://github.com/prevwong/reka.js/commit/c9cd8b5ce64922e91a85e001fa62305e964ec5d6)]: + - @rekajs/utils@0.1.3 + ## 0.1.15 ### Patch Changes diff --git a/packages/types/package.json b/packages/types/package.json index f3109628..7747c538 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/types", - "version": "0.1.15", + "version": "0.1.16", "description": "Create and manage Reka data types", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -16,7 +16,7 @@ "author": "Prev Wong", "license": "MIT", "dependencies": { - "@rekajs/utils": "^0.1.2" + "@rekajs/utils": "^0.1.3" }, "repository": { "type": "git", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index f9ec5f29..ce06df9e 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @rekajs/utils +## 0.1.3 + +### Patch Changes + +- [`c9cd8b5`](https://github.com/prevwong/reka.js/commit/c9cd8b5ce64922e91a85e001fa62305e964ec5d6) Thanks [@prevwong](https://github.com/prevwong)! - Remove lodash dep + ## 0.1.2 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index f25a1b08..b359c6a6 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/utils", - "version": "0.1.2", + "version": "0.1.3", "description": "Internal utilities used across the Reka monorepo", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs",