Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kphrx/rollup-typescript-plugin-template


https://github.com/kphrx/rollup-typescript-plugin-template

Last synced: about 2 months ago
JSON representation

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: "",
};
}
```