Skip to content

Commit

Permalink
fix: spawn markmap-cli
Browse files Browse the repository at this point in the history
  • Loading branch information
gera2ld committed Dec 20, 2023
1 parent 2a16d83 commit 19c6fd5
Show file tree
Hide file tree
Showing 12 changed files with 4,235 additions and 1,772 deletions.
1 change: 0 additions & 1 deletion .browserslistrc

This file was deleted.

3 changes: 0 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,3 @@ charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
quote_type = single

[*.md]
trim_trailing_whitespace = false
6 changes: 0 additions & 6 deletions .eslintrc

This file was deleted.

4 changes: 4 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
extends: [require.resolve('@gera2ld/plaid/eslint')],
rules: {},
};
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
shamefully-hoist = true
3 changes: 3 additions & 0 deletions babel.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: ['@babel/preset-env', '@babel/preset-typescript'],
};
29 changes: 13 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"license": "MIT",
"scripts": {
"prepare": "husky install",
"dev": "tsc -w",
"dev": "rollup -cw",
"clean": "del-cli dist",
"prepublishOnly": "run-s build",
"ci": "run-s lint",
"build:js": "tsc",
"build:js": "rollup -c",
"build": "run-s ci clean build:js",
"lint": "eslint --ext .ts . && prettier -c src",
"lint:fix": "eslint --ext .ts . --fix && prettier -c src -w"
Expand All @@ -24,25 +24,22 @@
"dist"
],
"devDependencies": {
"@types/lodash.debounce": "^4.0.7",
"@types/node": "^20.4.2",
"coc.nvim": "^0.0.80",
"del-cli": "^5.0.0",
"eslint": "^8.44.0",
"eslint-config-unjs": "^0.2.1",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
"@gera2ld/plaid": "^2.7.0",
"@gera2ld/plaid-rollup": "^2.7.0",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.10.5",
"coc.nvim": "0.0.83-next.9",
"del-cli": "^5.1.0",
"husky": "^8.0.3"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"markmap-cli": "0.14.5-alpha.18",
"pirates": "^4.0.6"
"markmap-cli": "^0.15.8",
"portfinder": "^1.0.32"
},
"engines": {
"coc": ">=0.0.70",
"node": ">=16"
"coc": ">=0.0.80",
"node": ">=18"
},
"keywords": [
"coc.nvim",
Expand Down
Loading

0 comments on commit 19c6fd5

Please sign in to comment.