Skip to content

Commit 20ca476

Browse files
committedMay 10, 2022
Removes postinstall
1 parent 1e18939 commit 20ca476

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎package.json

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@markdoc/markdoc",
33
"author": "Ryan Paul",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"description": "A text markup language for documentation",
66
"main": "dist/index.js",
77
"module": "dist/index.mjs",
@@ -17,16 +17,15 @@
1717
"scripts": {
1818
"test": "node -r ts-eager/register ./node_modules/.bin/jasmine",
1919
"marktest": "node -r ts-eager/register ${INSPECT:+--inspect-brk} spec/marktest/index.ts spec/marktest/tests.yaml",
20-
"build": "npm run build:common && npm run build:types",
20+
"build": "npx patch-package && npm run build:common && npm run build:types",
2121
"build:common": "node build.js",
2222
"build:types": "tsc --emitDeclarationOnly --outDir dist",
2323
"lint": "eslint .",
2424
"grammar": "pegjs -o src/grammar/tag.js src/grammar/tag.pegjs && prettier --write src/grammar/tag.js",
2525
"prettier": "prettier --write index.ts src spec",
2626
"prettier:check": "prettier --check index.ts src spec",
2727
"type:check": "tsc --noEmit",
28-
"typedoc": "typedoc index.ts --includeVersion --readme none --excludePrivate --excludeExternals --excludeInternal --sort source-order --out types",
29-
"postinstall": "patch-package"
28+
"typedoc": "typedoc index.ts --includeVersion --readme none --excludePrivate --excludeExternals --excludeInternal --sort source-order --out types"
3029
},
3130
"engines": {
3231
"node": ">=14.7.0"

0 commit comments

Comments
 (0)
Please sign in to comment.