-
-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: fisker <[email protected]> Co-authored-by: Jürg Lehni <[email protected]>
- Loading branch information
1 parent
3dcbe01
commit a206d9c
Showing
164 changed files
with
1,232 additions
and
701 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,11 @@ | ||
{ | ||
"name": "@prettier/plugin-pug", | ||
"version": "2.5.2", | ||
"version": "3.0.0", | ||
"description": "Prettier Pug Plugin", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"clean": "rimraf coverage .eslintcache dist junit.xml docs/.vitepress/dist pnpm-lock.yaml node_modules", | ||
"build:clean": "rimraf dist", | ||
"build:code": "tsc --project tsconfig.build.json", | ||
"build:code": "tsup-node", | ||
"build": "run-s build:clean build:code", | ||
"docs:build": "vitepress build docs", | ||
"docs:dev": "vitepress dev docs", | ||
|
@@ -19,6 +18,20 @@ | |
"prepublishOnly": "pnpm run clean && pnpm install && pnpm run build", | ||
"preflight": "pnpm install && run-s format lint build test ts-check" | ||
}, | ||
"type": "module", | ||
"main": "dist/index.js", | ||
"module": "dist/index.js", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"default": "./dist/index.js" | ||
}, | ||
"./src/*": { | ||
"types": "./src/*.d.ts", | ||
"default": "./src/*.ts" | ||
}, | ||
"./package.json": "./package.json" | ||
}, | ||
"keywords": [ | ||
"pug", | ||
"prettier-plugin", | ||
|
@@ -56,10 +69,9 @@ | |
"pug-lexer": "^5.0.1" | ||
}, | ||
"devDependencies": { | ||
"@types/node": "~20.4.4", | ||
"@types/prettier": "~2.7.3", | ||
"@typescript-eslint/eslint-plugin": "~6.1.0", | ||
"@typescript-eslint/parser": "~6.1.0", | ||
"@types/node": "~20.4.5", | ||
"@typescript-eslint/eslint-plugin": "~6.2.0", | ||
"@typescript-eslint/parser": "~6.2.0", | ||
"@vitest/coverage-v8": "~0.33.0", | ||
"benchmark": "~2.1.4", | ||
"eslint": "~8.45.0", | ||
|
@@ -68,21 +80,22 @@ | |
"eslint-gitignore": "~0.1.0", | ||
"eslint-plugin-inclusive-language": "~2.2.0", | ||
"eslint-plugin-jsdoc": "~46.4.4", | ||
"eslint-plugin-prettier": "~4.2.1", | ||
"eslint-plugin-prettier": "~5.0.0", | ||
"eslint-plugin-spellcheck": "~0.0.20", | ||
"npm-run-all": "~4.1.5", | ||
"prettier": "2.8.8", | ||
"prettier": "3.0.0", | ||
"prettier-plugin-organize-imports": "~3.2.3", | ||
"rimraf": "~5.0.1", | ||
"tsup": "~7.1.0", | ||
"typescript": "~5.1.6", | ||
"vite": "~4.4.6", | ||
"vite": "~4.4.7", | ||
"vitepress": "1.0.0-beta.6", | ||
"vitest": "~0.33.0" | ||
}, | ||
"peerDependencies": { | ||
"prettier": "^2.3.0" | ||
"prettier": "^3.0.0" | ||
}, | ||
"packageManager": "[email protected].9", | ||
"packageManager": "[email protected].10", | ||
"engines": { | ||
"node": "^16.13.0 || >=18.0.0", | ||
"npm": ">=7.10.0" | ||
|
Oops, something went wrong.