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

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed May 14, 2018
1 parent 76d86fc commit 693cc8f
Show file tree
Hide file tree
Showing 14 changed files with 131 additions and 19 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.0.0"></a>
# [1.0.0](https://github.com/smooth-code/h2x/compare/v0.1.9...v1.0.0) (2018-05-14)


### Features

* upgrade JSDOM ([0fd6741](https://github.com/smooth-code/h2x/commit/0fd6741))


### BREAKING CHANGES

* - An AST is now generate from the JSDOM tree.
- You can still access the originalNode using `node.originalNode`.
- You now have to call `fromHtmlAttribute` and `fromHtmlElement` to replace a node.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"lerna": "2.1.0",
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.1.9"
"version": "1.0.0"
}
12 changes: 12 additions & 0 deletions packages/h2x-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.0.0"></a>
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-core/compare/v0.1.9...v1.0.0) (2018-05-14)




**Note:** Version bump only for package h2x-core
10 changes: 5 additions & 5 deletions packages/h2x-core/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "h2x-core",
"description": "H2X compiler core.",
"version": "0.1.9",
"version": "1.0.0",
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-core",
"author": "Bergé Greg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/smooth-code/h2x",
"main": "lib/index.js",
"dependencies": {
"h2x-generate": "^0.1.9",
"h2x-parse": "^0.1.0",
"h2x-traverse": "^0.1.9"
"h2x-generate": "^1.0.0",
"h2x-parse": "^1.0.0",
"h2x-traverse": "^1.0.0"
},
"devDependencies": {
"h2x-types": "^0.1.0"
"h2x-types": "^1.0.0"
}
}
12 changes: 12 additions & 0 deletions packages/h2x-generate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.0.0"></a>
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-generate/compare/v0.1.9...v1.0.0) (2018-05-14)




**Note:** Version bump only for package h2x-generate
6 changes: 3 additions & 3 deletions packages/h2x-generate/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "h2x-generate",
"description": "Convert h2x AST into code.",
"version": "0.1.9",
"version": "1.0.0",
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-generate",
"author": "Bergé Greg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/smooth-code/h2x",
"main": "lib/index.js",
"dependencies": {
"h2x-traverse": "^0.1.9"
"h2x-traverse": "^1.0.0"
},
"devDependencies": {
"h2x-parse": "^0.1.0"
"h2x-parse": "^1.0.0"
}
}
19 changes: 19 additions & 0 deletions packages/h2x-parse/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.0.0"></a>
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse/compare/v0.1.9...v1.0.0) (2018-05-14)


### Features

* upgrade JSDOM ([0fd6741](https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse/commit/0fd6741))


### BREAKING CHANGES

* - An AST is now generate from the JSDOM tree.
- You can still access the originalNode using `node.originalNode`.
- You now have to call `fromHtmlAttribute` and `fromHtmlElement` to replace a node.
4 changes: 2 additions & 2 deletions packages/h2x-parse/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "h2x-parse",
"description": "Convert HTML code into h2x AST.",
"version": "0.1.0",
"version": "1.0.0",
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse",
"author": "Bergé Greg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/smooth-code/h2x",
"main": "lib/index.js",
"dependencies": {
"h2x-types": "^0.1.0",
"h2x-types": "^1.0.0",
"jsdom": "^11.10.0"
}
}
12 changes: 12 additions & 0 deletions packages/h2x-plugin-jsx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.0.0"></a>
# [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)




**Note:** Version bump only for package h2x-plugin-jsx
6 changes: 3 additions & 3 deletions packages/h2x-plugin-jsx/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "h2x-plugin-jsx",
"description": "Transform HTML into JSX.",
"version": "0.1.9",
"version": "1.0.0",
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-plugin-jsx",
"author": "Bergé Greg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/smooth-code/h2x",
"main": "lib/index.js",
"dependencies": {
"h2x-types": "^0.1.0"
"h2x-types": "^1.0.0"
},
"devDependencies": {
"h2x-core": "^0.1.9"
"h2x-core": "^1.0.0"
}
}
19 changes: 19 additions & 0 deletions packages/h2x-traverse/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.0.0"></a>
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-traverse/compare/v0.1.9...v1.0.0) (2018-05-14)


### Features

* upgrade JSDOM ([0fd6741](https://github.com/smooth-code/h2x/tree/master/packages/h2x-traverse/commit/0fd6741))


### BREAKING CHANGES

* - An AST is now generate from the JSDOM tree.
- You can still access the originalNode using `node.originalNode`.
- You now have to call `fromHtmlAttribute` and `fromHtmlElement` to replace a node.
6 changes: 3 additions & 3 deletions packages/h2x-traverse/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"name": "h2x-traverse",
"description": "Traverse and modify h2x AST.",
"version": "0.1.9",
"version": "1.0.0",
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-traverse",
"author": "Bergé Greg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/smooth-code/h2x",
"main": "lib/index.js",
"dependencies": {
"h2x-types": "^0.1.0"
"h2x-types": "^1.0.0"
},
"devDependencies": {
"h2x-parse": "^0.1.0"
"h2x-parse": "^1.0.0"
}
}
19 changes: 19 additions & 0 deletions packages/h2x-types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

<a name="1.0.0"></a>
# [1.0.0](https://github.com/smooth-code/h2x/tree/master/packages/h2x-types/compare/v0.1.9...v1.0.0) (2018-05-14)


### Features

* upgrade JSDOM ([0fd6741](https://github.com/smooth-code/h2x/tree/master/packages/h2x-types/commit/0fd6741))


### BREAKING CHANGES

* - An AST is now generate from the JSDOM tree.
- You can still access the originalNode using `node.originalNode`.
- You now have to call `fromHtmlAttribute` and `fromHtmlElement` to replace a node.
4 changes: 2 additions & 2 deletions packages/h2x-types/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "h2x-types",
"description": "Check types of h2x AST nodes.",
"version": "0.1.0",
"version": "1.0.0",
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-types",
"author": "Bergé Greg <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/smooth-code/h2x",
"main": "lib/index.js",
"devDependencies": {
"h2x-parse": "^0.1.0"
"h2x-parse": "^1.0.0"
}
}

0 comments on commit 693cc8f

Please sign in to comment.