Skip to content

Commit baa7bcc

Browse files
committedFeb 4, 2021
build: refactor builder/lint/test system
1 parent dc66abe commit baa7bcc

11 files changed

+6485
-2108
lines changed
 

‎.c8rc

+2-1
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

+9
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

+1-1
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

+3-7
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

-1
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

+5-3
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

+7
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;

‎package-lock.json

+6,403-2,055
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+41-40
Original file line numberDiff line numberDiff line change
@@ -2,63 +2,64 @@
22
"name": "posthtml-parser",
33
"version": "0.6.0",
44
"description": "Parse HTML/XML to PostHTMLTree",
5-
"keywords": [
6-
"html",
7-
"xml",
8-
"parser",
9-
"posthtml",
10-
"posthtmltree"
11-
],
12-
"main": "index.js",
13-
"types": "index.d.ts",
14-
"engines": {
15-
"node": ">=10.0.0"
16-
},
17-
"scripts": {
18-
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
19-
"test": "xo && c8 mocha"
20-
},
5+
"license": "MIT",
216
"repository": "posthtml/posthtml-parser",
22-
"author": "Ivan Voischev <voischev.ivan@ya.ru>",
7+
"homepage": "https://github.com/posthtml/posthtml-parser#readme",
8+
"bugs": {
9+
"url": "https://github.com/posthtml/posthtml-parser/issues"
10+
},
11+
"author": "Ivan Voischev <voischev@posthtml.org>",
2312
"contributors": [
2413
{
2514
"name": "Ivan Voischev",
26-
"email": "voischev.ivan@ya.ru"
15+
"email": "voischev@posthtml.org"
2716
},
2817
{
2918
"name": "Ivan Demidov",
30-
"email": "scrum@list.ru"
19+
"email": "scrum@posthtml.org"
3120
}
3221
],
33-
"license": "MIT",
34-
"bugs": {
35-
"url": "https://github.com/posthtml/posthtml-parser/issues"
22+
"main": "dist",
23+
"engines": {
24+
"node": ">=10"
3625
},
37-
"homepage": "https://github.com/posthtml/posthtml-parser#readme",
26+
"scripts": {
27+
"version": "conventional-changelog -i changelog.md -s -r 0 && git add changelog.md",
28+
"build": "rm -rf dist && tsup src/*.ts --format cjs --dts --minify",
29+
"dev": "npm run build -- --watch",
30+
"test": "xo && c8 ava",
31+
"pretest": "clinton"
32+
},
33+
"keywords": [
34+
"html",
35+
"xml",
36+
"parser",
37+
"posthtml",
38+
"posthtmltree"
39+
],
3840
"dependencies": {
39-
"htmlparser2": "^5.0.1"
41+
"htmlparser2": "^6.0.0"
4042
},
4143
"devDependencies": {
44+
"@antfu/eslint-config-ts": "^0.4.3",
4245
"@commitlint/cli": "^11.0.0",
4346
"@commitlint/config-angular": "^11.0.0",
44-
"c8": "^7.3.5",
45-
"chai": "^4.2.0",
47+
"@types/node": "^14.14.25",
48+
"ava": "^3.13.0",
49+
"c8": "^7.5.0",
50+
"clinton": "^0.14.0",
4651
"conventional-changelog-cli": "^2.0.34",
47-
"husky": "^4.3.0",
48-
"lint-staged": "^10.5.0",
49-
"mocha": "^8.2.0",
52+
"esbuild-register": "^2.0.0",
53+
"eslint": "^7.19.0",
54+
"esm": "^3.2.25",
55+
"husky": "^4.3.8",
56+
"lint-staged": "^10.5.3",
5057
"rewire": "^5.0.0",
5158
"rimraf": "^3.0.0",
52-
"sinon": "^9.2.0",
53-
"sinon-chai": "^3.5.0",
54-
"xo": "^0.30.0"
55-
},
56-
"funding": {
57-
"type": "patreon",
58-
"url": "https://opencollective.com/posthtml"
59+
"ts-node": "^9.0.0",
60+
"tsup": "^3.7.1",
61+
"typescript": "^4.0.5",
62+
"xo": "^0.37.1"
5963
},
60-
"collective": {
61-
"type": "opencollective",
62-
"url": "https://opencollective.com/posthtml"
63-
}
64+
"types": "types/index.d.ts"
6465
}

‎tsconfig.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es2019",
4+
"lib": ["ESNext"],
5+
"module": "esnext",
6+
"esModuleInterop": true,
7+
"moduleResolution": "node",
8+
"strict": true,
9+
"strictNullChecks": true
10+
}
11+
}

‎xo.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module.exports = {
22
space: true,
33
rules: {
4+
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
5+
'ava/no-skip-test': 'off',
6+
'ava/no-only-test': 'off'
47
}
58
};

0 commit comments

Comments
 (0)
Please sign in to comment.