Skip to content

Commit e511077

Browse files
committed
v0.2.0-beta.3
1 parent 8e95046 commit e511077

15 files changed

+96
-20
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-beta.3](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2022-03-07)
7+
8+
9+
### Bug Fixes
10+
11+
* remove redundant "}" of the image url ([#372](https://github.com/prevwong/craft.js/issues/372)) ([78d66b3](https://github.com/prevwong/craft.js/commit/78d66b3d3b499fb2b07c3bdb7339eee900e9bd1d))
12+
* syntax error in README example ([#375](https://github.com/prevwong/craft.js/issues/375)) ([b8fc62f](https://github.com/prevwong/craft.js/commit/b8fc62f6e2b07251111265a969eff446380ddb8f))
13+
14+
15+
### Features
16+
17+
* expose serializeNode ([#381](https://github.com/prevwong/craft.js/issues/381)) ([0ced058](https://github.com/prevwong/craft.js/commit/0ced058f844cd8043a063349e483e7775f074240))
18+
19+
20+
21+
22+
623
# [0.2.0-beta.2](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2022-01-17)
724

825

examples/basic/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-beta.3](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2022-03-07)
7+
8+
**Note:** Version bump only for package example-basic
9+
10+
11+
12+
13+
614
# [0.2.0-beta.2](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2022-01-17)
715

816
**Note:** Version bump only for package example-basic

examples/basic/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "example-basic",
3-
"version": "0.2.0-beta.2",
3+
"version": "0.2.0-beta.3",
44
"private": true,
55
"dependencies": {
6-
"@craftjs/core": "^0.2.0-beta.2",
6+
"@craftjs/core": "^0.2.0-beta.3",
77
"@material-ui/core": "latest",
88
"clsx": "latest",
99
"copy-to-clipboard": "^3.2.0",

examples/landing/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-beta.3](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2022-03-07)
7+
8+
**Note:** Version bump only for package example-landing
9+
10+
11+
12+
13+
614
# [0.2.0-beta.2](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2022-01-17)
715

816
**Note:** Version bump only for package example-landing

examples/landing/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-landing",
3-
"version": "0.2.0-beta.2",
3+
"version": "0.2.0-beta.3",
44
"private": true,
55
"scripts": {
66
"start": "next dev -p 3001",
@@ -9,8 +9,8 @@
99
"clean": "rimraf lib .next out dist"
1010
},
1111
"dependencies": {
12-
"@craftjs/core": "^0.2.0-beta.2",
13-
"@craftjs/layers": "^0.2.0-beta.2",
12+
"@craftjs/core": "^0.2.0-beta.3",
13+
"@craftjs/layers": "^0.2.0-beta.3",
1414
"@material-ui/core": "^4.5.2",
1515
"@material-ui/icons": "^4.5.1",
1616
"@material-ui/styles": "^4.5.2",

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"npmClient": "yarn",
33
"useWorkspaces": true,
4-
"version": "0.2.0-beta.2"
4+
"version": "0.2.0-beta.3"
55
}

packages/core/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-beta.3](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2022-03-07)
7+
8+
9+
### Bug Fixes
10+
11+
* syntax error in README example ([#375](https://github.com/prevwong/craft.js/issues/375)) ([b8fc62f](https://github.com/prevwong/craft.js/commit/b8fc62f6e2b07251111265a969eff446380ddb8f))
12+
13+
14+
### Features
15+
16+
* expose serializeNode ([#381](https://github.com/prevwong/craft.js/issues/381)) ([0ced058](https://github.com/prevwong/craft.js/commit/0ced058f844cd8043a063349e483e7775f074240))
17+
18+
19+
20+
21+
622
# [0.2.0-beta.2](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2022-01-17)
723

824

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@craftjs/core",
3-
"version": "0.2.0-beta.2",
3+
"version": "0.2.0-beta.3",
44
"description": "A React Framework for building extensible drag and drop page editors",
55
"keywords": [
66
"react",
@@ -35,7 +35,7 @@
3535
"url": "https://github.com/prevwong/craft.js/issues"
3636
},
3737
"dependencies": {
38-
"@craftjs/utils": "^0.2.0-beta.2",
38+
"@craftjs/utils": "^0.2.0-beta.3",
3939
"@types/react": "^17.0.5",
4040
"debounce": "^1.2.0",
4141
"lodash": "^4.17.20",

packages/layers/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-beta.3](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2022-03-07)
7+
8+
**Note:** Version bump only for package @craftjs/layers
9+
10+
11+
12+
13+
614
# [0.2.0-beta.2](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2022-01-17)
715

816
**Note:** Version bump only for package @craftjs/layers

packages/layers/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"web-builder",
1212
"react"
1313
],
14-
"version": "0.2.0-beta.2",
14+
"version": "0.2.0-beta.3",
1515
"author": "Prev Wong <prevwong@gmail.com>",
1616
"main": "./dist/cjs/index.js",
1717
"module": "./dist/esm/index.js",
@@ -31,7 +31,7 @@
3131
},
3232
"homepage": "https://github.com/prevwong/craft.js/",
3333
"dependencies": {
34-
"@craftjs/utils": "^0.2.0-beta.2",
34+
"@craftjs/utils": "^0.2.0-beta.3",
3535
"react-contenteditable": "^3.3.3"
3636
},
3737
"devDependencies": {

packages/utils/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-beta.3](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2022-03-07)
7+
8+
**Note:** Version bump only for package @craftjs/utils
9+
10+
11+
12+
13+
614
# [0.2.0-beta.2](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2022-01-17)
715

816
**Note:** Version bump only for package @craftjs/utils

packages/utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@craftjs/utils",
33
"description": "Utilities used internally across the craft.js monorepo",
4-
"version": "0.2.0-beta.2",
4+
"version": "0.2.0-beta.3",
55
"author": "Prev Wong <prevwong@gmail.com>",
66
"license": "MIT",
77
"main": "./dist/cjs/index.js",

site/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.2.0-beta.3](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.2...v0.2.0-beta.3) (2022-03-07)
7+
8+
9+
### Bug Fixes
10+
11+
* remove redundant "}" of the image url ([#372](https://github.com/prevwong/craft.js/issues/372)) ([78d66b3](https://github.com/prevwong/craft.js/commit/78d66b3d3b499fb2b07c3bdb7339eee900e9bd1d))
12+
13+
14+
15+
16+
617
# [0.2.0-beta.2](https://github.com/prevwong/craft.js/compare/v0.2.0-beta.1...v0.2.0-beta.2) (2022-01-17)
718

819
**Note:** Version bump only for package site

site/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "site",
3-
"version": "0.2.0-beta.2",
3+
"version": "0.2.0-beta.3",
44
"private": true,
55
"scripts": {
66
"start": "docusaurus start",

yarn.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -3007,11 +3007,11 @@ __metadata:
30073007
languageName: node
30083008
linkType: hard
30093009

3010-
"@craftjs/core@^0.2.0-beta.2, @craftjs/core@workspace:packages/core":
3010+
"@craftjs/core@^0.2.0-beta.3, @craftjs/core@workspace:packages/core":
30113011
version: 0.0.0-use.local
30123012
resolution: "@craftjs/core@workspace:packages/core"
30133013
dependencies:
3014-
"@craftjs/utils": ^0.2.0-beta.2
3014+
"@craftjs/utils": ^0.2.0-beta.3
30153015
"@types/react": ^17.0.5
30163016
debounce: ^1.2.0
30173017
lodash: ^4.17.20
@@ -3022,12 +3022,12 @@ __metadata:
30223022
languageName: unknown
30233023
linkType: soft
30243024

3025-
"@craftjs/layers@^0.2.0-beta.2, @craftjs/layers@workspace:packages/layers":
3025+
"@craftjs/layers@^0.2.0-beta.3, @craftjs/layers@workspace:packages/layers":
30263026
version: 0.0.0-use.local
30273027
resolution: "@craftjs/layers@workspace:packages/layers"
30283028
dependencies:
30293029
"@babel/core": ^7.7.4
3030-
"@craftjs/utils": ^0.2.0-beta.2
3030+
"@craftjs/utils": ^0.2.0-beta.3
30313031
"@svgr/rollup": ^4.3.3
30323032
react-contenteditable: ^3.3.3
30333033
styled-components: ^4.2.1
@@ -3038,7 +3038,7 @@ __metadata:
30383038
languageName: unknown
30393039
linkType: soft
30403040

3041-
"@craftjs/utils@^0.2.0-beta.2, @craftjs/utils@workspace:packages/utils":
3041+
"@craftjs/utils@^0.2.0-beta.3, @craftjs/utils@workspace:packages/utils":
30423042
version: 0.0.0-use.local
30433043
resolution: "@craftjs/utils@workspace:packages/utils"
30443044
dependencies:
@@ -11552,7 +11552,7 @@ __metadata:
1155211552
version: 0.0.0-use.local
1155311553
resolution: "example-basic@workspace:examples/basic"
1155411554
dependencies:
11555-
"@craftjs/core": ^0.2.0-beta.2
11555+
"@craftjs/core": ^0.2.0-beta.3
1155611556
"@material-ui/core": latest
1155711557
clsx: latest
1155811558
copy-to-clipboard: ^3.2.0
@@ -11572,8 +11572,8 @@ __metadata:
1157211572
resolution: "example-landing@workspace:examples/landing"
1157311573
dependencies:
1157411574
"@babel/core": ^7.7.5
11575-
"@craftjs/core": ^0.2.0-beta.2
11576-
"@craftjs/layers": ^0.2.0-beta.2
11575+
"@craftjs/core": ^0.2.0-beta.3
11576+
"@craftjs/layers": ^0.2.0-beta.3
1157711577
"@fullhuman/postcss-purgecss": ^1.3.0
1157811578
"@material-ui/core": ^4.5.2
1157911579
"@material-ui/icons": ^4.5.1

0 commit comments

Comments
 (0)