-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
67 changed files
with
2,550 additions
and
452 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
PORT=8080 | ||
GOOGLE_ANALYTICS_MEASUREMENT_ID=G-XXXXXXX | ||
GOOGLE_API_KEY= | ||
GOOGLE_CLIENT_ID= | ||
GOOGLE_CLIENT_ID= | ||
GOOGLE_GAE_SERVICE_URL=https://your-project-id.region-id.r.appspot.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// ==UserScript== | ||
// @name Libel | ||
// @version 3.7.0 | ||
// @version 3.8.0 | ||
// @author kitce <[email protected]> | ||
// @description Label users on LIHKG | ||
// @homepage https://kitce.github.io/libel | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "libel", | ||
"namespace": "libel", | ||
"displayName": "Libel", | ||
"version": "3.7.0", | ||
"version": "3.8.0", | ||
"description": "Label users on LIHKG", | ||
"author": "kitce <[email protected]>", | ||
"repository": { | ||
|
@@ -20,12 +20,13 @@ | |
"dev": "NODE_ENV=development webpack serve --config ./config/webpack/webpack.config.dev.ts", | ||
"dev:main": "pnpm dev --config-name main", | ||
"dev:egg": "EGG=true pnpm dev --config-name egg", | ||
"proxy": "node proxy/server.js", | ||
"test": "jest", | ||
"test:watch": "pnpm test --watch", | ||
"prebuild": "pnpm clean && pnpm type:scss", | ||
"build": "pnpm prebuild && NODE_ENV=production webpack --config ./config/webpack/webpack.config.prod.ts", | ||
"prerelease": "cz bump && cz ch && pnpm build && git add . && git commit --amend --no-edit", | ||
"type:scss": "tsm src/**/*.module.scss --implementation sass --exportType default", | ||
"type:scss": "tsm \"src/**/*.module.scss\" --implementation sass --exportType default", | ||
"type:scss:watch": "pnpm type:scss --watch", | ||
"announce": "ts-node scripts/generate-announcement.ts" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# This file specifies files that are *not* uploaded to Google Cloud | ||
# using gcloud. It follows the same syntax as .gitignore, with the addition of | ||
# "#!include" directives (which insert the entries of the given .gitignore-style | ||
# file at that point). | ||
# | ||
# For more information, run: | ||
# $ gcloud topic gcloudignore | ||
# | ||
.gcloudignore | ||
# If you would like to upload your .git directory, .gitignore file or files | ||
# from your .gitignore file, remove the corresponding line | ||
# below: | ||
.git | ||
.gitignore | ||
|
||
# Node.js dependencies: | ||
node_modules/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
runtime: nodejs16 |
Oops, something went wrong.