Skip to content

Commit

Permalink
Conforming with new Replugged Update
Browse files Browse the repository at this point in the history
  • Loading branch information
SammCheese committed Feb 6, 2023
1 parent 6177aa3 commit 5864c52
Show file tree
Hide file tree
Showing 7 changed files with 1,948 additions and 402 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: pnpm install

- name: Build TypeScript and bundle into asar
run: pnpm run build-and-bundle
run: pnpm run bundle

- uses: ncipollo/release-action@v1
with:
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
# Reaction Noise!

[![Install](https://img.shields.io/badge/-Install%20in%20Replugged-blue?style=for-the-badge&logo=none)](https://replugged.dev/install?identifier=SammCheese/Reaction-Noise&source=github)

Do you want to torture yourself? Fantastic, You've come to the right place!

This Plugin will play a customizable sound every time you (or anyone if you want to) add a Reaction.

## Install

Press the blue button

OR

1. Go to the "Release" Tab
2. Download the .asar file
3. Drag and Drop the .asar file into your plugin folder
4. Restart Discord


2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"discordID": "372148345894076416",
"github": "sammcheese"
},
"version": "1.0.0",
"version": "1.0.1",
"updater": {
"type": "github",
"id": "SammCheese/Reaction-Noise"
Expand Down
22 changes: 9 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,35 @@
{
"name": "reaction-noise",
"version": "1.0.0",
"version": "1.0.1",
"description": "Play a sound when you react to a message",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsx scripts/build.ts",
"watch": "tsx scripts/build.ts --watch",
"bundle": "tsx scripts/bundle.ts",
"build-and-bundle": "pnpm run build --no-install && pnpm run bundle",
"build": "replugged build plugin",
"watch": "replugged build plugin --watch",
"bundle": "replugged bundle plugin",
"check": "tsc --noEmit",
"prettier:check": "prettier ./src ./scripts --check",
"eslint:check": "eslint ./src ./scripts",
"prettier:fix": "prettier ./src ./scripts --write",
"eslint:fix": "eslint ./src ./scripts --fix",
"prettier:check": "prettier ./src --check",
"eslint:check": "eslint ./src",
"prettier:fix": "prettier ./src --write",
"eslint:fix": "eslint ./src --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
},
"keywords": [],
"author": "",
"license": "Unlicensed",
"devDependencies": {
"@electron/asar": "^3.2.1",
"@types/node": "^18.11.2",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"esbuild": "^0.15.11",
"eslint": "^8.25.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.31.10",
"prettier": "^2.8.1",
"replugged": "4.0.0-beta0.22",
"tsx": "^3.10.3",
"replugged": "4.0.0-beta0.25",
"typescript": "^4.8.4"
}
}
Loading

0 comments on commit 5864c52

Please sign in to comment.