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

Commit f6472c8

Browse files
committed
v0.1.0
1 parent 95d1bd0 commit f6472c8

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

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.0.0"
5+
"version": "0.1.0"
66
}

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.0.0",
4+
"version": "0.1.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-core",
66
"author": "Bergé Greg <[email protected]>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"dependencies": {
11-
"h2x-generate": "0.0.0",
12-
"h2x-parse": "0.0.0",
13-
"h2x-traverse": "0.0.0"
11+
"h2x-generate": "^0.1.0",
12+
"h2x-parse": "^0.1.0",
13+
"h2x-traverse": "^0.1.0"
1414
},
1515
"devDependencies": {
16-
"h2x-types": "0.0.0"
16+
"h2x-types": "^0.1.0"
1717
}
1818
}

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.0.0",
4+
"version": "0.1.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-generate",
66
"author": "Bergé Greg <[email protected]>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"dependencies": {
11-
"h2x-traverse": "0.0.0"
11+
"h2x-traverse": "^0.1.0"
1212
},
1313
"devDependencies": {
14-
"h2x-parse": "0.0.0"
14+
"h2x-parse": "^0.1.0"
1515
}
1616
}

packages/h2x-parse/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "h2x-parse",
33
"description": "Convert HTML code into h2x AST.",
4-
"version": "0.0.0",
4+
"version": "0.1.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-parse",
66
"author": "Bergé Greg <[email protected]>",
77
"license": "MIT",
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.0.0",
4+
"version": "0.1.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-plugin-jsx",
66
"author": "Bergé Greg <[email protected]>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"dependencies": {
11-
"h2x-types": "0.0.0"
11+
"h2x-types": "^0.1.0"
1212
},
1313
"devDependencies": {
14-
"h2x-core": "0.0.0"
14+
"h2x-core": "^0.1.0"
1515
}
1616
}

packages/h2x-traverse/package.json

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

packages/h2x-types/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "h2x-types",
33
"description": "Check types of h2x AST nodes.",
4-
"version": "0.0.0",
4+
"version": "0.1.0",
55
"repository": "https://github.com/smooth-code/h2x/tree/master/packages/h2x-types",
66
"author": "Bergé Greg <[email protected]>",
77
"license": "MIT",
88
"homepage": "https://github.com/smooth-code/h2x",
99
"main": "lib/index.js",
1010
"devDependencies": {
11-
"h2x-parse": "0.0.0"
11+
"h2x-parse": "^0.1.0"
1212
}
1313
}

0 commit comments

Comments
 (0)