add prettier dependency

master
Brad Cornes 2020-12-07 15:21:45 +00:00
parent 264cdc0c5e
commit 5bd09789f4
2 changed files with 31 additions and 6 deletions

32
package-lock.json generated
View File

@ -7,7 +7,10 @@
"name": "vscode-tailwindcss", "name": "vscode-tailwindcss",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
] ],
"devDependencies": {
"prettier": "^2.2.1"
}
}, },
"node_modules/@babel/code-frame": { "node_modules/@babel/code-frame": {
"version": "7.10.4", "version": "7.10.4",
@ -7593,13 +7596,14 @@
} }
}, },
"node_modules/prettier": { "node_modules/prettier": {
"version": "1.19.1", "version": "2.2.1",
"license": "MIT", "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz",
"integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==",
"bin": { "bin": {
"prettier": "bin-prettier.js" "prettier": "bin-prettier.js"
}, },
"engines": { "engines": {
"node": ">=4" "node": ">=10.13.0"
} }
}, },
"node_modules/prettier-linter-helpers": { "node_modules/prettier-linter-helpers": {
@ -10978,6 +10982,17 @@
"node": ">=6" "node": ">=6"
} }
}, },
"node_modules/tsdx/node_modules/prettier": {
"version": "1.19.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
"integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==",
"bin": {
"prettier": "bin-prettier.js"
},
"engines": {
"node": ">=4"
}
},
"node_modules/tsdx/node_modules/pretty-format": { "node_modules/tsdx/node_modules/pretty-format": {
"version": "24.9.0", "version": "24.9.0",
"license": "MIT", "license": "MIT",
@ -17296,7 +17311,9 @@
"version": "1.1.2" "version": "1.1.2"
}, },
"prettier": { "prettier": {
"version": "1.19.1" "version": "2.2.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz",
"integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q=="
}, },
"prettier-linter-helpers": { "prettier-linter-helpers": {
"version": "1.0.0", "version": "1.0.0",
@ -19626,6 +19643,11 @@
"find-up": "^3.0.0" "find-up": "^3.0.0"
} }
}, },
"prettier": {
"version": "1.19.1",
"resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz",
"integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew=="
},
"pretty-format": { "pretty-format": {
"version": "24.9.0", "version": "24.9.0",
"requires": { "requires": {

View File

@ -3,5 +3,8 @@
"private": true, "private": true,
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
] ],
"devDependencies": {
"prettier": "^2.2.1"
}
} }