mirror of
https://github.com/ivuorinen/sysvinit-service-generator.git
synced 2026-01-26 03:24:03 +00:00
fix: use node-modules linker (#87)
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -28,3 +28,8 @@ coverage
|
||||
*.sw?
|
||||
|
||||
*.tsbuildinfo
|
||||
|
||||
# Yarn
|
||||
.yarn/
|
||||
yarn.lock
|
||||
.pnp.*
|
||||
|
||||
1
.yarnrc.yml
Normal file
1
.yarnrc.yml
Normal file
@@ -0,0 +1 @@
|
||||
nodeLinker: node-modules
|
||||
12
README.md
12
README.md
@@ -13,6 +13,18 @@ This Vue 3 app generates templates for sysvinit services.
|
||||
7. ???
|
||||
8. Profit!
|
||||
|
||||
## Development
|
||||
|
||||
Install dependencies and run the dev server with Yarn:
|
||||
|
||||
```bash
|
||||
yarn install
|
||||
yarn dev
|
||||
|
||||
# build the app
|
||||
yarn build
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"@vue/eslint-config-prettier": "^10",
|
||||
"@vue/eslint-config-typescript": "^14",
|
||||
"@vue/tsconfig": "^0.7.0",
|
||||
"@vue/typescript-plugin": "^3.0.1",
|
||||
"eslint": "^9",
|
||||
"eslint-plugin-vue": "^10",
|
||||
"npm-run-all2": "^8.0.0",
|
||||
@@ -35,6 +36,7 @@
|
||||
"typescript": "~5.8.0",
|
||||
"vite": "^6",
|
||||
"vite-plugin-vue-devtools": "^7.0.18",
|
||||
"vue-eslint-parser": "^10.2.0",
|
||||
"vue-tsc": "^3.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,5 +18,8 @@
|
||||
"./src/*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"vueCompilerOptions": {
|
||||
"plugins": ["@vue/typescript-plugin"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -10,5 +10,8 @@
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
],
|
||||
"compilerOptions": {
|
||||
"lib": ["es2023"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
"composite": true,
|
||||
"noEmit": true,
|
||||
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
||||
"lib": ["es2023"],
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Bundler",
|
||||
"types": [
|
||||
|
||||
Reference in New Issue
Block a user