Skip to content

Commit

Permalink
adds installer link functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
Snare-Hawk committed Feb 6, 2023
1 parent 38b6775 commit f023be1
Show file tree
Hide file tree
Showing 6 changed files with 965 additions and 759 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ 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:
artifacts: "*.asar"
artifacts: "bundle/*"
makeLatest: true
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,4 @@ dist
.tern-port

.parcel-cache
/*.asar
/bundle
25 changes: 10 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,25 @@
{
"name": "revert-rebrand",
"name": "theme-template",
"version": "1.0.0",
"description": "Reverts Discord's 2021 rebrand.",
"description": "A theme template",
"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": "NO_INSTALL=true pnpm run build && pnpm run bundle",
"lint": "prettier ./src ./scripts --check",
"lint:fix": "prettier ./src ./scripts --write"
"build": "replugged build theme",
"watch": "replugged build theme --watch",
"bundle": "replugged bundle theme",
"lint": "prettier ./src --check",
"lint:fix": "prettier ./src --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@electron/asar": "^3.2.1",
"@parcel/config-default": "^2.8.2",
"@parcel/core": "^2.8.2",
"@parcel/transformer-sass": "^2.8.2",
"@parcel/config-default": "^2.8.3",
"@parcel/core": "^2.8.3",
"@types/node": "^18.11.15",
"parcel": "^2.8.2",
"prettier": "^2.8.1",
"replugged": "4.0.0-beta0.17",
"tsx": "^3.12.1"
"replugged": "4.0.0-beta0.25"
}
}
Loading

0 comments on commit f023be1

Please sign in to comment.