mirror of
https://github.com/penpot/penpot-plugins.git
synced 2025-01-06 14:50:21 -05:00
feat: first npm release
This commit is contained in:
parent
f32f6b0010
commit
77cf91042f
5 changed files with 14 additions and 6 deletions
|
@ -43,6 +43,13 @@ npx nx publish plugin-types -- --version 0.1.0 --tag 0.1.0
|
|||
npx nx publish plugins-styles -- --version 0.1.0 --tag 0.1.0
|
||||
```
|
||||
|
||||
### Create the tag in git
|
||||
|
||||
```shell
|
||||
git tag -a 0.1.0
|
||||
git push origin 0.1.0
|
||||
```
|
||||
|
||||
### Installing Libraries:
|
||||
|
||||
When installing the library, ensure to specify the registry:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@penpot/plugin-types",
|
||||
"version": "0.1.0",
|
||||
"version": "0.6.0",
|
||||
"typings": "./index.d.ts",
|
||||
"type": "module"
|
||||
}
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
{
|
||||
"name": "plugins-runtime",
|
||||
"version": "0.1.0",
|
||||
"name": "@penpot/plugins-runtime",
|
||||
"version": "0.6.0",
|
||||
"dependencies": {
|
||||
"@penpot/plugin-types": "^0.1.0",
|
||||
"@penpot/plugin-types": "^0.6.0",
|
||||
"ses": "^1.1.0",
|
||||
"zod": "^3.22.4"
|
||||
},
|
||||
"module": "./index.mjs",
|
||||
"typings": "./index.d.ts",
|
||||
"private": true,
|
||||
"type": "module"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "@penpot/plugin-styles",
|
||||
"version": "0.1.0",
|
||||
"version": "0.6.0",
|
||||
"dependencies": {}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "penpot-plugins",
|
||||
"version": "0.1.0",
|
||||
"version": "0.6.0",
|
||||
"type": "module",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in a new issue