Skip to content

Commit 524f1ad

Browse files
authored
Merge pull request #57 from posthtml/milestone-0.7.0
Milestone 0.7.0
2 parents 8ce2ec4 + 5887ed4 commit 524f1ad

20 files changed

Lines changed: 6920 additions & 2611 deletions

.c8rc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
{
2-
"reporter": ["lcov", "text"]
2+
"reporter": ["lcov", "text"],
3+
"extension": [".js"]
34
}

.clintonrc.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"ignores": [],
3+
"rules": {
4+
"pkg-main": "off",
5+
"ava": "off",
6+
"xo": "off",
7+
"use-travis": "off"
8+
}
9+
}

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ quote_type = single
99
trim_trailing_whitespace = true
1010
insert_final_newline = true
1111

12-
[{package.json,*.yml,*.jade,*.pss,*.css,*.js,*.md,.*,*.ts}]
12+
[{*.json,*.yaml,*.yml,*.jade,*.pss,*.css,*.js,*.md,.*,*.ts}]
1313
indent_size = 2
1414

1515
[{changelog.md,.*}]

.gitignore

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
# OS
2-
.DS_Store
3-
._*
4-
5-
# NODEJS
61
node_modules
7-
npm-debug.log
8-
92
coverage
3+
.nyc_output
4+
npm-debug.log
5+
dist

.huskyrc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"hooks": {
33
"pre-push": "npm t",
4-
"pre-commit": "lint-staged",
54
"commit-msg": "commitlint --extends=@commitlint/config-angular -e"
65
}
76
}

.npmignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
node_modules
2-
test
3-
npm-debug.log
4-
.editorconfig
2+
.gitignore
3+
.travis.yml
4+
coverage
5+
.nyc_output
6+
src

ava.config.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
const config = {
2+
verbose: true,
3+
extensions: ['ts'],
4+
require: ['esm', 'esbuild-register']
5+
};
6+
7+
export default config;

changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
1+
## 0.7.0 (2021-02-09)
2+
3+
* build: default build cjs ([41b7b25](https://github.com/posthtml/posthtml-parser/commit/41b7b25))
4+
* build: not generate dts ([662f8d9](https://github.com/posthtml/posthtml-parser/commit/662f8d9))
5+
* build: perf config for ts ([a3b5bc4](https://github.com/posthtml/posthtml-parser/commit/a3b5bc4))
6+
* build: refactor builder/lint/test system ([baa7bcc](https://github.com/posthtml/posthtml-parser/commit/baa7bcc))
7+
* build(deps): bump ini from 1.3.5 to 1.3.8 ([471a77f](https://github.com/posthtml/posthtml-parser/commit/471a77f))
8+
* docs: default import description ([c824343](https://github.com/posthtml/posthtml-parser/commit/c824343))
9+
* perf: export default declare ([eb63940](https://github.com/posthtml/posthtml-parser/commit/eb63940))
10+
* perf: target to node 10 ([3f0a707](https://github.com/posthtml/posthtml-parser/commit/3f0a707))
11+
* style: after update xo ([dc66abe](https://github.com/posthtml/posthtml-parser/commit/dc66abe))
12+
* test: rewrite to typscript ([63a3415](https://github.com/posthtml/posthtml-parser/commit/63a3415))
13+
* refactor: rewrite to typscript ([b1450a8](https://github.com/posthtml/posthtml-parser/commit/b1450a8))
14+
15+
16+
117
## 0.6.0 (2020-11-13)
218

19+
* 0.6.0 ([cf98487](https://github.com/posthtml/posthtml-parser/commit/cf98487))
320
* refactor: update htmlparser2 to version 5 ([58258b4](https://github.com/posthtml/posthtml-parser/commit/58258b4))
421

522

index.d.ts

Lines changed: 0 additions & 96 deletions
This file was deleted.

index.js

Lines changed: 0 additions & 163 deletions
This file was deleted.

0 commit comments

Comments
 (0)