chore(tools): remove remark

Now that we use prettier, we can automatically format the README
anyways. The only difference then would be the automatic table of
contents, but the structure of the README does not change often and is
not very complex, so there is not really a need to automate this
pull/948/head
Jan van Brügge 4 years ago
parent 02dffe1060
commit 91b9f13c85
No known key found for this signature in database
GPG Key ID: 88E0BF7B7A546481

39
.ecrc

@ -1,39 +0,0 @@
{
"ignoreDefaults": true,
"exclude": [
"^coverage/",
"^node_modules/",
"^es/",
"^helpers/",
"^modules/",
"^test/",
"^h.d.ts",
"^h.js",
"^h.js.map",
"^hooks.d.ts",
"^hooks.js",
"^hooks.js.map",
"^htmldomapi.d.ts",
"^htmldomapi.js",
"^htmldomapi.js.map",
"^is.d.ts",
"^is.js",
"^is.js.map",
"^jsx.d.ts",
"^jsx-global.d.ts",
"^jsx.js",
"^jsx.js.map",
"^snabbdom.d.ts",
"^snabbdom.js",
"^snabbdom.js.map",
"^thunk.d.ts",
"^thunk.js",
"^thunk.js.map",
"^tovnode.d.ts",
"^tovnode.js",
"^tovnode.js.map",
"^vnode.d.ts",
"^vnode.js",
"^vnode.js.map"
]
}

@ -1 +0,0 @@
/CHANGELOG.md

8
package-lock.json generated

@ -43,8 +43,6 @@
"p-map-series": "2.1.0",
"p-reduce": "2.1.0",
"prettier": "^2.2.1",
"remark-cli": "9.0.0",
"remark-toc": "7.2.0",
"rollup": "^2.41.2",
"standard-version": "9.1.1",
"tty-table": "4.1.3",
@ -17605,8 +17603,7 @@
}
},
"remark-cli": {
"version": "9.0.0",
"resolved": "https://registry.npmjs.org/remark-cli/-/remark-cli-9.0.0.tgz",
"version": "https://registry.npmjs.org/remark-cli/-/remark-cli-9.0.0.tgz",
"integrity": "sha512-y6kCXdwZoMoh0Wo4Och1tDW50PmMc86gW6GpF08v9d+xUCEJE2wwXdQ+TnTaUamRnfFdU+fE+eNf2PJ53cyq8g==",
"dev": true,
"requires": {
@ -17634,8 +17631,7 @@
}
},
"remark-toc": {
"version": "7.2.0",
"resolved": "https://registry.npmjs.org/remark-toc/-/remark-toc-7.2.0.tgz",
"version": "https://registry.npmjs.org/remark-toc/-/remark-toc-7.2.0.tgz",
"integrity": "sha512-ppHepvpbg7j5kPFmU5rzDC4k2GTcPDvWcxXyr/7BZzO1cBSPk0stKtEJdsgAyw2WHKPGxadcHIZRjb2/sHxjkg==",
"dev": true,
"requires": {

@ -29,7 +29,6 @@
"bundle:cjs": "rollup build/index.js --format cjs --file build/snabbdom.cjs.js",
"format": "prettier --write .",
"prepare": "husky install",
"docs": "remark . --output",
"lint": "eslint --ext .ts,.tsx,.js --ignore-path .gitignore .",
"unit": "cross-env FILES_PATTERN=\"test/unit/*.ts,test/unit/*.tsx\" karma start karma.conf.js",
"benchmark": "cross-env FILES_PATTERN=\"test-bundles/benchmark/**/*.js\" karma start karma.conf.cjs --concurrency=1",
@ -72,8 +71,6 @@
"p-map-series": "2.1.0",
"p-reduce": "2.1.0",
"prettier": "^2.2.1",
"remark-cli": "9.0.0",
"remark-toc": "7.2.0",
"rollup": "^2.41.2",
"standard-version": "9.1.1",
"tty-table": "4.1.3",
@ -81,11 +78,7 @@
},
"prettier": {},
"lint-staged": {
"*.(ts|tsx|js)": "prettier --write",
"*.md": [
"npm run docs",
"prettier --write"
]
"*.(ts|tsx|js|md)": "prettier --write"
},
"commithelper": {
"scopeOverrides": {
@ -99,20 +92,5 @@
"examples"
]
}
},
"remarkConfig": {
"plugins": [
[
"toc",
{
"tight": true
}
]
],
"settings": {
"listItemIndent": "1",
"bullet": "*",
"tablePipeAlign": false
}
}
}

Loading…
Cancel
Save