Skip to content
This repository was archived by the owner on Aug 24, 2019. It is now read-only.

Commit 693cc8f

Browse files
committed
v1.0.0
1 parent 76d86fc commit 693cc8f

File tree

14 files changed

+131
-19
lines changed

14 files changed

+131
-19
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="1.0.0"></a>
7+
# [1.0.0](https://github.com/smooth-code/h2x/compare/v0.1.9...v1.0.0) (2018-05-14)
8+
9+
10+
### Features
11+
12+
* upgrade JSDOM ([0fd6741](https://github.com/smooth-code/h2x/commit/0fd6741))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* - An AST is now generate from the JSDOM tree.
18+
- You can still access the originalNode using `node.originalNode`.
19+
- You now have to call `fromHtmlAttribute` and `fromHtmlElement` to replace a node.

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"lerna": "2.1.0",
33
"npmClient": "yarn",
44
"useWorkspaces": true,
5-
"version": "0.1.9"
5+
"version": "1.0.0"
66
}

packages/h2x-core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="1.0.0"></a>
7+
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-core/compare/v0.1.9...v1.0.0) (2018-05-14)
8+
9+
10+
11+
12+
**Note:** Version bump only for package h2x-core

packages/h2x-core/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "h2x-core",
33
"description": "H2X compiler core.",
4-
"version": "0.1.9",
4+
"version": "1.0.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-core",
66
"author": "Bergé Greg <berge.greg@gmail.com>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"dependencies": {
11-
"h2x-generate": "^0.1.9",
12-
"h2x-parse": "^0.1.0",
13-
"h2x-traverse": "^0.1.9"
11+
"h2x-generate": "^1.0.0",
12+
"h2x-parse": "^1.0.0",
13+
"h2x-traverse": "^1.0.0"
1414
},
1515
"devDependencies": {
16-
"h2x-types": "^0.1.0"
16+
"h2x-types": "^1.0.0"
1717
}
1818
}

packages/h2x-generate/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="1.0.0"></a>
7+
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-generate/compare/v0.1.9...v1.0.0) (2018-05-14)
8+
9+
10+
11+
12+
**Note:** Version bump only for package h2x-generate

packages/h2x-generate/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "h2x-generate",
33
"description": "Convert h2x AST into code.",
4-
"version": "0.1.9",
4+
"version": "1.0.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-generate",
66
"author": "Bergé Greg <berge.greg@gmail.com>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"dependencies": {
11-
"h2x-traverse": "^0.1.9"
11+
"h2x-traverse": "^1.0.0"
1212
},
1313
"devDependencies": {
14-
"h2x-parse": "^0.1.0"
14+
"h2x-parse": "^1.0.0"
1515
}
1616
}

packages/h2x-parse/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="1.0.0"></a>
7+
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse/compare/v0.1.9...v1.0.0) (2018-05-14)
8+
9+
10+
### Features
11+
12+
* upgrade JSDOM ([0fd6741](https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse/commit/0fd6741))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* - An AST is now generate from the JSDOM tree.
18+
- You can still access the originalNode using `node.originalNode`.
19+
- You now have to call `fromHtmlAttribute` and `fromHtmlElement` to replace a node.

packages/h2x-parse/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "h2x-parse",
33
"description": "Convert HTML code into h2x AST.",
4-
"version": "0.1.0",
4+
"version": "1.0.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse",
66
"author": "Bergé Greg <berge.greg@gmail.com>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"dependencies": {
11-
"h2x-types": "^0.1.0",
11+
"h2x-types": "^1.0.0",
1212
"jsdom": "^11.10.0"
1313
}
1414
}

packages/h2x-plugin-jsx/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
<a name="1.0.0"></a>
7+
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-plugin-jsx/compare/v0.1.9...v1.0.0) (2018-05-14)
8+
9+
10+
11+
12+
**Note:** Version bump only for package h2x-plugin-jsx

packages/h2x-plugin-jsx/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "h2x-plugin-jsx",
33
"description": "Transform HTML into JSX.",
4-
"version": "0.1.9",
4+
"version": "1.0.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-plugin-jsx",
66
"author": "Bergé Greg <berge.greg@gmail.com>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"dependencies": {
11-
"h2x-types": "^0.1.0"
11+
"h2x-types": "^1.0.0"
1212
},
1313
"devDependencies": {
14-
"h2x-core": "^0.1.9"
14+
"h2x-core": "^1.0.0"
1515
}
1616
}

0 commit comments

Comments
 (0)