Skip to content
This repository has been archived by the owner on Feb 22, 2023. It is now read-only.

Commit

Permalink
Format files with prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
sarayourfriend committed Feb 21, 2022
1 parent e5d6a7c commit c9a289e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions .pnpmfile.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ function readPackage(pkg, context) {
if (pkg.dependencies.typescript) {
pkg.dependencies = {
...pkg.dependencies,
typescript: packageJson.devDependencies.typescript
typescript: packageJson.devDependencies.typescript,
}
context.log(`typescript@${pkg.dependencies.typescript} => typescript@${packageJson.devDependencies.typescript} in dependencies of ${pkg.name}`)
context.log(
`typescript@${pkg.dependencies.typescript} => typescript@${packageJson.devDependencies.typescript} in dependencies of ${pkg.name}`
)
}

return pkg
}

module.exports = {
hooks: {
readPackage
}
readPackage,
},
}
2 changes: 1 addition & 1 deletion typings/vue/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
declare module "*.vue" {
declare module '*.vue' {
import Vue from 'vue'
export default Vue
}

0 comments on commit c9a289e

Please sign in to comment.