1
Fork 0

Compare commits

..

2 Commits

Author SHA1 Message Date
Bauke fa68f728f4
Version 2.1.1! 2023-07-03 12:11:44 +02:00
Bauke e23984fea4
Add a pnpm install task. 2023-07-03 12:11:29 +02:00
2 changed files with 12 additions and 3 deletions

View File

@ -9,7 +9,7 @@ NODE_ENV = { condition = { env_not_set = ["NODE_ENV"] }, value = "development" }
# Start a browser instance that will reload the extension when changes are made.
[tasks.dev]
clear = true
dependencies = ["build"]
dependencies = ["pnpm-install", "build"]
command = "pnpm"
args = ["conc", "-c=auto", "-k", "makers watch", "makers run"]
@ -45,10 +45,19 @@ args = ["stylelint", "source/**/*.scss"]
# Re-build and pack the WebExtension for publishing.
[tasks.pack]
clear = true
dependencies = ["clean", "build"]
dependencies = ["pnpm-install", "clean", "build"]
command = "pnpm"
args = ["web-ext", "build", "--config=build/web-ext-${BROWSER}.json"]
# Run "pnpm install" if the node_modules directory doesn't exist.
[tasks.pnpm-install]
clear = true
# Disable NODE_ENV so pnpm installs everything.
env = { NODE_ENV = "" }
condition = { files_not_exist = ["node_modules/"] }
command = "pnpm"
args = ["install", "--silent"]
# Start a browser instance with the extension loaded.
[tasks.run]
clear = true

View File

@ -13,7 +13,7 @@ export function createManifest(browser: string): Manifest.WebExtensionManifest {
manifest_version: Number.NaN,
name: "Tildes ReExtended",
description: "The principal enhancement suite for Tildes.",
version: "2.1.0",
version: "2.1.1",
permissions: ["downloads", "storage", "*://tildes.net/*"],
options_ui: {
page: "options/index.html",