Skip to content

Commit

Permalink
Merge branch 'release/v3.6.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
kitce committed Jun 26, 2022
2 parents fae5388 + 369b01e commit b9f7b39
Show file tree
Hide file tree
Showing 20 changed files with 373 additions and 48 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ commitizen:
name: cz_conventional_commits
tag_format: v$version
update_changelog_on_bump: true
version: 3.6.2
version: 3.6.3
version_files:
- package.json
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v3.6.3 (2022-06-27)

### Fix

- **ga**: failed to load Google Analytics

## v3.6.2 (2022-06-12)

### Fix
Expand All @@ -8,6 +14,10 @@

- **typings**: revise `waitForElement` types

### Feat

- **egg**: ***

## v3.6.1 (2022-06-01)

### Fix
Expand Down
4 changes: 4 additions & 0 deletions config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ export enum Directory {
Dist = 'dist'
};

export enum File {
Announcements = 'announcements.json'
}

export const port = parseInt(process.env.PORT || '8080');

export const dev = process.env.NODE_ENV === 'development';
Expand Down
2 changes: 1 addition & 1 deletion dist/egg.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/egg.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/libel.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/libel.meta.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// ==UserScript==
// @name Libel
// @version 3.6.2
// @version 3.6.3
// @author kitce <[email protected]>
// @description Label users on LIHKG
// @homepage https://kitce.github.io/libel
Expand Down
4 changes: 2 additions & 2 deletions dist/libel.user.js

Large diffs are not rendered by default.

9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "libel",
"namespace": "libel",
"displayName": "Libel",
"version": "3.6.2",
"version": "3.6.3",
"description": "Label users on LIHKG",
"author": "kitce <[email protected]>",
"repository": {
Expand All @@ -26,7 +26,8 @@
"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:watch": "pnpm type:scss --watch"
"type:scss:watch": "pnpm type:scss --watch",
"announce": "ts-node scripts/generate-announcement.ts"
},
"dependencies": {
"@floating-ui/react-dom": "^0.6.0",
Expand Down Expand Up @@ -71,6 +72,7 @@
"@types/gapi.auth2": "^0.0.55",
"@types/gapi.client.drive": "^3.0.13",
"@types/gtag.js": "^0.0.8",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.1",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.168",
Expand All @@ -85,12 +87,14 @@
"@types/sass": "^1.16.0",
"@types/semver": "^7.3.6",
"@types/tailwindcss": "^3.0.10",
"@types/uuid": "^8.3.4",
"@types/webpack-env": "^1.16.0",
"chance": "^1.1.8",
"css-loader": "^5.2.0",
"cssnano": "^5.1.4",
"dotenv": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^8.2.1",
"jest": "^27.5.1",
"postcss": "^8.2.9",
"postcss-loader": "^5.2.0",
Expand All @@ -108,6 +112,7 @@
"typesafe-actions": "^5.1.0",
"typescript": "^4.6.3",
"utility-types": "^3.10.0",
"uuid": "^8.3.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
Expand Down
Loading

0 comments on commit b9f7b39

Please sign in to comment.