diff --git a/.changeset/afraid-hornets-wash.md b/.changeset/afraid-hornets-wash.md deleted file mode 100644 index 6c110c0a..00000000 --- a/.changeset/afraid-hornets-wash.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@rekajs/react-code-editor': patch -'@rekajs/codemirror': patch ---- - -Bump codemirror dependencies to stable versions diff --git a/.changeset/calm-trains-carry.md b/.changeset/calm-trains-carry.md deleted file mode 100644 index 1cb73a5a..00000000 --- a/.changeset/calm-trains-carry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rekajs/core': patch ---- - -Fix memory leaks diff --git a/.changeset/fair-jars-worry.md b/.changeset/fair-jars-worry.md deleted file mode 100644 index 4d7f8914..00000000 --- a/.changeset/fair-jars-worry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rekajs/react': patch ---- - -Rename RekaProvider "state" prop to "reka" prop diff --git a/.changeset/kind-socks-try.md b/.changeset/kind-socks-try.md deleted file mode 100644 index b96aea72..00000000 --- a/.changeset/kind-socks-try.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rekajs/core': patch ---- - -Update Extension type diff --git a/.changeset/selfish-wombats-do.md b/.changeset/selfish-wombats-do.md deleted file mode 100644 index 244c8b8a..00000000 --- a/.changeset/selfish-wombats-do.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@rekajs/codemirror': patch -'@rekajs/collaboration': patch -'@rekajs/core': patch -'@rekajs/parser': patch -'@rekajs/react': patch -'@rekajs/react-code-editor': patch -'@rekajs/types': patch -'@rekajs/utils': patch ---- - -Inject package version to browser window diff --git a/.changeset/sixty-monkeys-pay.md b/.changeset/sixty-monkeys-pay.md deleted file mode 100644 index 1a2452f9..00000000 --- a/.changeset/sixty-monkeys-pay.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rekajs/collaboration': patch ---- - -Remove unused dep diff --git a/.changeset/tall-crabs-play.md b/.changeset/tall-crabs-play.md deleted file mode 100644 index dc9c1bba..00000000 --- a/.changeset/tall-crabs-play.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@rekajs/react-code-editor': patch ---- - -Minor theme styling update diff --git a/packages/codemirror/CHANGELOG.md b/packages/codemirror/CHANGELOG.md index 27e7035a..b60ad5e3 100644 --- a/packages/codemirror/CHANGELOG.md +++ b/packages/codemirror/CHANGELOG.md @@ -1,5 +1,13 @@ # @rekajs/codemirror +## 0.1.2 + +### Patch Changes + +- [`a20601e`](https://github.com/prevwong/reka.js/commit/a20601e98ce9ee962d29c5c957f063c420f2e025) Thanks [@prevwong](https://github.com/prevwong)! - Bump codemirror dependencies to stable versions + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + ## 0.1.1 ### Patch Changes diff --git a/packages/codemirror/package.json b/packages/codemirror/package.json index d1be4738..c714a1f2 100644 --- a/packages/codemirror/package.json +++ b/packages/codemirror/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/codemirror", - "version": "0.1.1", + "version": "0.1.2", "description": "Reka Grammer for Codemirror", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", diff --git a/packages/collaboration/CHANGELOG.md b/packages/collaboration/CHANGELOG.md index 209f08dc..d6ba6cd4 100644 --- a/packages/collaboration/CHANGELOG.md +++ b/packages/collaboration/CHANGELOG.md @@ -1,5 +1,16 @@ # @rekajs/collaboration +## 0.1.4 + +### Patch Changes + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + +- [`3529a25`](https://github.com/prevwong/reka.js/commit/3529a25e0c99b510ba1487c132b7c9eba4c331bd) Thanks [@prevwong](https://github.com/prevwong)! - Remove unused dep + +- Updated dependencies [[`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343)]: + - @rekajs/utils@0.1.2 + ## 0.1.3 ### Patch Changes diff --git a/packages/collaboration/package.json b/packages/collaboration/package.json index 1d032c8c..3069e6d5 100644 --- a/packages/collaboration/package.json +++ b/packages/collaboration/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/collaboration", - "version": "0.1.3", + "version": "0.1.4", "description": "Provides multiplayer functionality for Reka.js", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -14,7 +14,7 @@ "author": "Prev Wong", "license": "MIT", "dependencies": { - "@rekajs/utils": "^0.1.1" + "@rekajs/utils": "^0.1.2" }, "peerDependencies": { "@rekajs/core": ">=0.1.0", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index f3826f64..6b82f8e5 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,18 @@ # @rekajs/core +## 0.1.5 + +### Patch Changes + +- [`c1aba8e`](https://github.com/prevwong/reka.js/commit/c1aba8ee761cc4969a18817289604392504cb5ed) Thanks [@prevwong](https://github.com/prevwong)! - Fix memory leaks + +- [`2203e89`](https://github.com/prevwong/reka.js/commit/2203e8956b9f26c49bedabc3b6a4b8180a449be0) Thanks [@prevwong](https://github.com/prevwong)! - Update Extension type + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + +- Updated dependencies [[`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343)]: + - @rekajs/utils@0.1.2 + ## 0.1.4 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 5c4a6374..f28dd3a4 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/core", - "version": "0.1.4", + "version": "0.1.5", "description": "State management system for building no-code page editors", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -22,7 +22,7 @@ "@rekajs/types": ">=0.1.0" }, "dependencies": { - "@rekajs/utils": "^0.1.1", + "@rekajs/utils": "^0.1.2", "lodash": "^4.17.21", "mobx": "^6.3.13" } diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md index 2e74d9bc..e79016d1 100644 --- a/packages/parser/CHANGELOG.md +++ b/packages/parser/CHANGELOG.md @@ -1,5 +1,14 @@ # @rekajs/parser +## 0.1.3 + +### Patch Changes + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + +- Updated dependencies [[`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343)]: + - @rekajs/utils@0.1.2 + ## 0.1.2 ### Patch Changes diff --git a/packages/parser/package.json b/packages/parser/package.json index fdb64b1e..58179856 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/parser", - "version": "0.1.2", + "version": "0.1.3", "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.1", + "@rekajs/utils": "^0.1.2", "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 9855279c..125c765a 100644 --- a/packages/react-code-editor/CHANGELOG.md +++ b/packages/react-code-editor/CHANGELOG.md @@ -1,5 +1,18 @@ # @rekajs/react-code-editor +## 0.1.4 + +### Patch Changes + +- [`a20601e`](https://github.com/prevwong/reka.js/commit/a20601e98ce9ee962d29c5c957f063c420f2e025) Thanks [@prevwong](https://github.com/prevwong)! - Bump codemirror dependencies to stable versions + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + +- [`4a6685f`](https://github.com/prevwong/reka.js/commit/4a6685f53f092a7b39b63be1dfa7d34bf99195bf) Thanks [@prevwong](https://github.com/prevwong)! - Minor theme styling update + +- Updated dependencies [[`a20601e`](https://github.com/prevwong/reka.js/commit/a20601e98ce9ee962d29c5c957f063c420f2e025), [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343)]: + - @rekajs/codemirror@0.1.2 + ## 0.1.3 ### Patch Changes diff --git a/packages/react-code-editor/package.json b/packages/react-code-editor/package.json index 24f8f5ff..17be5a26 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.3", + "version": "0.1.4", "description": "Codemirror editor for editing Reka AST in code", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -24,7 +24,7 @@ "@codemirror/state": "^6.2.0", "@codemirror/theme-one-dark": "^6.1.1", "@codemirror/view": "^6.9.3", - "@rekajs/codemirror": ">=0.1.1", + "@rekajs/codemirror": ">=0.1.2", "codemirror": "^6.0.1", "lodash": "^4.17.21", "mobx": "^6.3.13", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 604626f9..4f2dc357 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @rekajs/react +## 0.1.3 + +### Patch Changes + +- [`f9b872d`](https://github.com/prevwong/reka.js/commit/f9b872d28f18406b389d42c684a15c375e8a89d2) Thanks [@prevwong](https://github.com/prevwong)! - Rename RekaProvider "state" prop to "reka" prop + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + ## 0.1.2 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 0924e7fc..c3d2bbe5 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/react", - "version": "0.1.2", + "version": "0.1.3", "description": "React specific APIs for Reka", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 5d95714b..0934eee7 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,14 @@ # @rekajs/types +## 0.1.4 + +### Patch Changes + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + +- Updated dependencies [[`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343)]: + - @rekajs/utils@0.1.2 + ## 0.1.3 ### Patch Changes diff --git a/packages/types/package.json b/packages/types/package.json index 398de267..0898a6b4 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/types", - "version": "0.1.3", + "version": "0.1.4", "description": "Create and manage Reka data types", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", @@ -16,6 +16,6 @@ "author": "Prev Wong", "license": "MIT", "dependencies": { - "@rekajs/utils": "^0.1.1" + "@rekajs/utils": "^0.1.2" } } diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 9a79de6c..f9ec5f29 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @rekajs/utils +## 0.1.2 + +### Patch Changes + +- [`61435db`](https://github.com/prevwong/reka.js/commit/61435dbfb88326eabe7857e43318a45459b08343) Thanks [@prevwong](https://github.com/prevwong)! - Inject package version to browser window + ## 0.1.1 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index 35ec6b8b..be53f561 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@rekajs/utils", - "version": "0.1.1", + "version": "0.1.2", "description": "Internal utilities used across the Reka monorepo", "main": "./dist/cjs/index.js", "module": "./dist/esm/index.mjs", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 376a7941..77a60503 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -63,7 +63,7 @@ importers: rollup: 2.79.1 rollup-plugin-dts: 5.2.0_ntuob3xud5wukob6phfmz2mbyy tslib: 2.4.0 - turbo: 1.8.5 + turbo: 1.8.8 typescript: 4.9.4 vitest: 0.29.2 @@ -186,7 +186,7 @@ importers: specifiers: '@rekajs/core': workspace:* '@rekajs/types': workspace:* - '@rekajs/utils': ^0.1.1 + '@rekajs/utils': ^0.1.2 yjs: ^13.5.50 dependencies: '@rekajs/utils': link:../utils @@ -199,7 +199,7 @@ importers: specifiers: '@rekajs/parser': workspace:* '@rekajs/types': workspace:* - '@rekajs/utils': ^0.1.1 + '@rekajs/utils': ^0.1.2 '@types/lodash': ^4.14.185 lodash: ^4.17.21 mobx: ^6.3.13 @@ -216,7 +216,7 @@ importers: specifiers: '@babel/types': ^7.18.13 '@rekajs/types': workspace:* - '@rekajs/utils': ^0.1.1 + '@rekajs/utils': ^0.1.2 acorn: ^8.7.0 acorn-jsx: ^5.3.2 dependencies: @@ -252,7 +252,7 @@ importers: '@codemirror/state': ^6.2.0 '@codemirror/theme-one-dark': ^6.1.1 '@codemirror/view': ^6.9.3 - '@rekajs/codemirror': '>=0.1.1' + '@rekajs/codemirror': '>=0.1.2' '@rekajs/core': workspace:* '@rekajs/parser': workspace:* '@rekajs/react': workspace:* @@ -287,7 +287,7 @@ importers: packages/types: specifiers: - '@rekajs/utils': ^0.1.1 + '@rekajs/utils': ^0.1.2 dependencies: '@rekajs/utils': link:../utils @@ -8997,65 +8997,65 @@ packages: yargs: 17.6.2 dev: true - /turbo-darwin-64/1.8.5: - resolution: {integrity: sha512-CAYh56bzeHfnh7jTm03r29bh8p5a/EjQo1Id5yLUH7hS7msTau/+YpxJWPodLbN0UQsUYivUqHQkglJ+eMJ7xA==} + /turbo-darwin-64/1.8.8: + resolution: {integrity: sha512-18cSeIm7aeEvIxGyq7PVoFyEnPpWDM/0CpZvXKHpQ6qMTkfNt517qVqUTAwsIYqNS8xazcKAqkNbvU1V49n65Q==} cpu: [x64] os: [darwin] requiresBuild: true dev: true optional: true - /turbo-darwin-arm64/1.8.5: - resolution: {integrity: sha512-R3jCPOv+lu3dcvMhj8b/Defv6dyUwX6W+tbX7d6YUCA46Plf/bGCQ8+MSbxmr/4E1GyGOVFsn1wRfiYk0us/Dg==} + /turbo-darwin-arm64/1.8.8: + resolution: {integrity: sha512-ruGRI9nHxojIGLQv1TPgN7ud4HO4V8mFBwSgO6oDoZTNuk5ybWybItGR+yu6fni5vJoyMHXOYA2srnxvOc7hjQ==} cpu: [arm64] os: [darwin] requiresBuild: true dev: true optional: true - /turbo-linux-64/1.8.5: - resolution: {integrity: sha512-YRc/KNRZeUVvth11UO4SDQZR2IqGgl9MSsbzqoHuFz4B4Q5QXH7onHogv9aXWE/BZBBbcrSBTlwBSG0Gg+J8hg==} + /turbo-linux-64/1.8.8: + resolution: {integrity: sha512-N/GkHTHeIQogXB1/6ZWfxHx+ubYeb8Jlq3b/3jnU4zLucpZzTQ8XkXIAfJG/TL3Q7ON7xQ8yGOyGLhHL7MpFRg==} cpu: [x64] os: [linux] requiresBuild: true dev: true optional: true - /turbo-linux-arm64/1.8.5: - resolution: {integrity: sha512-8exVZb7XBl/V3gHSweuUyG2D9IzfWqwLvlXoeLWlVYSj61Ajgdv+WU7lvUmx+H2s+sSKqmIFmewA5Lw6YY37sg==} + /turbo-linux-arm64/1.8.8: + resolution: {integrity: sha512-hKqLbBHgUkYf2Ww8uBL9UYdBFQ5677a7QXdsFhONXoACbDUPvpK4BKlz3NN7G4NZ+g9dGju+OJJjQP0VXRHb5w==} cpu: [arm64] os: [linux] requiresBuild: true dev: true optional: true - /turbo-windows-64/1.8.5: - resolution: {integrity: sha512-fA8PU5ZNoFnQkapG06WiEqfsVQ5wbIPkIqTwUsd/M2Lp+KgxE79SQbuEI+2vQ9SmwM5qoMi515IPjgvXAJXgCw==} + /turbo-windows-64/1.8.8: + resolution: {integrity: sha512-2ndjDJyzkNslXxLt+PQuU21AHJWc8f6MnLypXy3KsN4EyX/uKKGZS0QJWz27PeHg0JS75PVvhfFV+L9t9i+Yyg==} cpu: [x64] os: [win32] requiresBuild: true dev: true optional: true - /turbo-windows-arm64/1.8.5: - resolution: {integrity: sha512-SW/NvIdhckLsAWjU/iqBbCB0S8kXupKscUK3kEW1DZIr3MYcP/yIuaE/IdPuqcoF3VP0I3TLD4VTYCCKAo3tKA==} + /turbo-windows-arm64/1.8.8: + resolution: {integrity: sha512-xCA3oxgmW9OMqpI34AAmKfOVsfDljhD5YBwgs0ZDsn5h3kCHhC4x9W5dDk1oyQ4F5EXSH3xVym5/xl1J6WRpUg==} cpu: [arm64] os: [win32] requiresBuild: true dev: true optional: true - /turbo/1.8.5: - resolution: {integrity: sha512-UBnH2wIFb5g6OQCk8f34Ud15ZXV4xEMmugeDJTU5Ur2LpVRsNEny0isSCYdb3Iu3howoNyyXmtpaxWsAwNYkkg==} + /turbo/1.8.8: + resolution: {integrity: sha512-qYJ5NjoTX+591/x09KgsDOPVDUJfU9GoS+6jszQQlLp1AHrf1wRFA3Yps8U+/HTG03q0M4qouOfOLtRQP4QypA==} hasBin: true requiresBuild: true optionalDependencies: - turbo-darwin-64: 1.8.5 - turbo-darwin-arm64: 1.8.5 - turbo-linux-64: 1.8.5 - turbo-linux-arm64: 1.8.5 - turbo-windows-64: 1.8.5 - turbo-windows-arm64: 1.8.5 + turbo-darwin-64: 1.8.8 + turbo-darwin-arm64: 1.8.8 + turbo-linux-64: 1.8.8 + turbo-linux-arm64: 1.8.8 + turbo-windows-64: 1.8.8 + turbo-windows-arm64: 1.8.8 dev: true /type-check/0.4.0: