Skip to content

Commit

Permalink
Merge pull request #17 from dumlj/feature/pnpm
Browse files Browse the repository at this point in the history
feat: support other package manager
  • Loading branch information
DavidKk authored Jan 2, 2024
2 parents ad20264 + e594c3f commit b7a80b5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@
"scripts": {
"commit": "git-cz",
"ci:pages": "shx rm -rf ./gh-pages && mkdir -p ./gh-pages && shx cp -rf ./coverage ./gh-pages/coverage && dumi build",
"ci:coverage": "pnpm compile && pnpm test",
"ci:build": "pnpm compile",
"ci:coverage": "npm run compile && npm run test",
"ci:build": "npm run compile",
"postinstall": "node ./scripts/postinstall",
"clear": "rimraf --glob ./@*/*/{libs,build,*.tsbuildinfo,tsconfig.build.json} tsconfig.build.json",
"format": "prettier --config .prettierrc.js --write \"**/*.{js,jsx,ts,tsx,d.ts,vue,md,json,yml,yaml}\"",
"lint": "pnpm lint:ts",
"lint": "npm run lint:ts",
"lint:ts": "eslint --config .eslintrc.js --ext .ts,.tsx --fix .",
"tidy": "dumlj concurrently \"tscfg --exclude **/__example__\" \"deps --ignore .templaterc.ts\"",
"readme": "dumlj readme --exclude **/__example__",
"compile": "tsc --build ./tsconfig.build.json",
"test": "jest -c ./jest.config.ts --coverage --reporters=default --reporters=jest-junit",
"docs:dev": "rm -rf .dumi/tmp && rm -rf node_modules/.cache && dumi dev",
"dev": "jest -c ./jest.config.ts --watch",
"ok": "pnpm tidy && pnpm compile && pnpm lint && pnpm test && pnpm readme && pnpm format"
"ok": "npm run tidy && npm run compile && npm run lint && npm run test && npm run readme && npm run format"
},
"devDependencies": {
"@types/node": "^20.10.1",
Expand Down

0 comments on commit b7a80b5

Please sign in to comment.