Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kphrx/rollup-typescript-plugin-template
https://github.com/kphrx/rollup-typescript-plugin-template
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kphrx/rollup-typescript-plugin-template
- Owner: kphrx
- License: mit
- Created: 2024-01-20T14:16:31.000Z (12 months ago)
- Default Branch: master
- Last Pushed: 2024-01-20T17:43:07.000Z (12 months ago)
- Last Synced: 2024-10-29T00:02:59.538Z (2 months ago)
- Language: TypeScript
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rollup-typescript-plugin-template
1. Change package name, and repository url
```console
$ npm pkg set name="@/rollup-plugin-"
$ npm pkg set repository.url="git+https://github.com//.git"
$ npm pkg set bugs.url="https://github.com///issues"
$ npm pkg set homepage="https://github.com//#readme"
```2. Change plugin name
```diff
export default (options: {} = {}): Plugin => {
return {
- name: "typescript-plugin-template",
+ name: "",
};
}
```