This repository was archived by the owner on Aug 24, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 14 files changed +131
-19
lines changed Expand file tree Collapse file tree 14 files changed +131
-19
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 2
2
"lerna" : " 2.1.0" ,
3
3
"npmClient" : " yarn" ,
4
4
"useWorkspaces" : true ,
5
- "version" : " 0.1.9 "
5
+ "version" : " 1.0.0 "
6
6
}
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " h2x-core" ,
3
3
"description" : " H2X compiler core." ,
4
- "version" : " 0.1.9 " ,
4
+ "version" : " 1.0.0 " ,
5
5
"repository" : " https://github.com/smooth-code/h2x/tree/master/packages/h2x-core" ,
6
6
"author" : " Bergé Greg <berge.greg@gmail.com>" ,
7
7
"license" : " MIT" ,
8
8
"homepage" : " https://github.com/smooth-code/h2x" ,
9
9
"main" : " lib/index.js" ,
10
10
"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 "
14
14
},
15
15
"devDependencies" : {
16
- "h2x-types" : " ^0.1 .0"
16
+ "h2x-types" : " ^1.0 .0"
17
17
}
18
18
}
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " h2x-generate" ,
3
3
"description" : " Convert h2x AST into code." ,
4
- "version" : " 0.1.9 " ,
4
+ "version" : " 1.0.0 " ,
5
5
"repository" : " https://github.com/smooth-code/h2x/tree/master/packages/h2x-generate" ,
6
6
"author" : " Bergé Greg <berge.greg@gmail.com>" ,
7
7
"license" : " MIT" ,
8
8
"homepage" : " https://github.com/smooth-code/h2x" ,
9
9
"main" : " lib/index.js" ,
10
10
"dependencies" : {
11
- "h2x-traverse" : " ^0.1.9 "
11
+ "h2x-traverse" : " ^1.0.0 "
12
12
},
13
13
"devDependencies" : {
14
- "h2x-parse" : " ^0.1 .0"
14
+ "h2x-parse" : " ^1.0 .0"
15
15
}
16
16
}
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " h2x-parse" ,
3
3
"description" : " Convert HTML code into h2x AST." ,
4
- "version" : " 0.1 .0" ,
4
+ "version" : " 1.0 .0" ,
5
5
"repository" : " https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse" ,
6
6
"author" : " Bergé Greg <berge.greg@gmail.com>" ,
7
7
"license" : " MIT" ,
8
8
"homepage" : " https://github.com/smooth-code/h2x" ,
9
9
"main" : " lib/index.js" ,
10
10
"dependencies" : {
11
- "h2x-types" : " ^0.1 .0" ,
11
+ "h2x-types" : " ^1.0 .0" ,
12
12
"jsdom" : " ^11.10.0"
13
13
}
14
14
}
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " h2x-plugin-jsx" ,
3
3
"description" : " Transform HTML into JSX." ,
4
- "version" : " 0.1.9 " ,
4
+ "version" : " 1.0.0 " ,
5
5
"repository" : " https://github.com/smooth-code/h2x/tree/master/packages/h2x-plugin-jsx" ,
6
6
"author" : " Bergé Greg <berge.greg@gmail.com>" ,
7
7
"license" : " MIT" ,
8
8
"homepage" : " https://github.com/smooth-code/h2x" ,
9
9
"main" : " lib/index.js" ,
10
10
"dependencies" : {
11
- "h2x-types" : " ^0.1 .0"
11
+ "h2x-types" : " ^1.0 .0"
12
12
},
13
13
"devDependencies" : {
14
- "h2x-core" : " ^0.1.9 "
14
+ "h2x-core" : " ^1.0.0 "
15
15
}
16
16
}
You can’t perform that action at this time.
0 commit comments