mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 14:42:56 +00:00
* 🐛 Fix plugin code build * 🔧 Update editor.defaultFormatter to new Prettier * 🐛 Fix lint issues in create-palette-plugin * 🐛 Add missing run in pnpm init script for plugins
17 lines
676 B
JSON
17 lines
676 B
JSON
{
|
|
"name": "rename-layers-plugin",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "ng build rename-layers-plugin && pnpm run build:plugin",
|
|
"build:dev": "ng build rename-layers-plugin --configuration development",
|
|
"build:plugin": "node ../../tools/scripts/build-plugin.mjs --plugin=rename-layers-plugin",
|
|
"build:plugin:watch": "node ../../tools/scripts/build-plugin.mjs --plugin=rename-layers-plugin --watch",
|
|
"serve": "ng serve rename-layers-plugin",
|
|
"init": "concurrently --kill-others --names plugin,serve \"pnpm run build:plugin:watch\" \"pnpm run serve\"",
|
|
"lint": "eslint .",
|
|
"test": "vitest"
|
|
}
|
|
}
|