From 78cf98e8802cf36bc057da3d97bd8ac0d865aa43 Mon Sep 17 00:00:00 2001 From: Francesco Saverio Cannizzaro Date: Mon, 25 Dec 2023 23:39:10 +0100 Subject: [PATCH] update plugin name / readme --- README.md | 8 +++++--- package.json | 4 ++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4e17206..bc0523c 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,15 @@ -# Elgato Distribution Tool (Rollup plugin) +# Stream Deck Package (Rollup plugin) + +This plugin uses the [Elgato Distribution Tool](https://docs.elgato.com/sdk/plugins/packaging) to package a Stream Deck plugin. ## Usage ```typescript -import elgatoDistributionTool from "@fcannizzaro/rollup-elgato-distribution-tool"; +import streamDeckPackage from "@fcannizzaro/rollup-stream-deck-package"; export default { plugins: [ - elgatoDistributionTool({ + streamDeckPackage({ plugin: "./com.sample.plugin.sdPlugin", }), ], diff --git a/package.json b/package.json index d8b605b..1e79deb 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,10 @@ { - "name": "@fcannizzaro/rollup-elgato-distribution-tool", + "name": "@fcannizzaro/rollup-stream-deck-package", "version": "1.0.1", "description": "Rollup plugin to create a distribution package for Elgato Stream Deck plguins", "author": "Francesco Saverio Cannizzaro ", "license": "MIT", - "repository": "https://github.com/fcannizzaro/rollup-elgato-distribution-tool", + "repository": "https://github.com/fcannizzaro/rollup-stream-deck-package", "keywords": [ "rollup", "rollup-plugin",