Skip to content

Commit 02d8229

Browse files
committed
Fix user identity
1 parent 2566498 commit 02d8229

File tree

6 files changed

+9
-12
lines changed

6 files changed

+9
-12
lines changed

package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"scripts": {
66
"test": "jest",
77
"build": "webpack --config webpack.config.dev.js --mode=development --env heapId=1265225250",
8-
"build:prod:edge": "yes | cp prod.edge.env prod.env && webpack --config webpack.config.prod.js --mode=production --env heapId=2553677209",
9-
"build:prod:chrome": "yes | cp prod.chrome.env prod.env && webpack --config webpack.config.prod.js --mode=production --env heapId=2553677209",
10-
"start": "webpack --watch --config webpack.config.dev.js --mode=development --env heapId=1265225250 --hot",
11-
"start:test": "webpack --watch --config webpack.config.dev.js --mode=none --env heapId=1265225250 --hot"
8+
"build:prod:edge": "yes | cp prod.edge.env prod.env && webpack --config webpack.config.prod.js --mode=production --env heapId=2553677209 && cd ./dist; zip -r ./edge.zip *",
9+
"build:prod:chrome": "yes | cp prod.chrome.env prod.env && webpack --config webpack.config.prod.js --mode=production --env heapId=2553677209 && cd ./dist; zip -r ./chrome.zip *",
10+
"start": "yes | cp local.env .env && webpack --watch --config webpack.config.dev.js --mode=development --env heapId=1265225250 --hot",
11+
"start:test": "yes | cp test.env .env && webpack --watch --config webpack.config.dev.js --mode=development --env heapId=1265225250 --hot"
1212
},
1313
"keywords": [],
1414
"license": "ISC",

public/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "__MSG_appName__",
33
"description": "__MSG_appDescription__",
44
"manifest_version": 3,
5-
"version": "1.2.8",
5+
"version": "1.2.10",
66
"icons": {
77
"16": "icon16.png",
88
"48": "icon48.png",

src/background.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ chrome.runtime.onMessage.addListener((request, sender, sendResponse) => {
4949
getGoogleAuthTokenSilent().then((token: string) => {
5050
const http = new Http(token, LoginTypes.google)
5151
getMyInfo(http).then((user: User) => {
52-
sendResponse({ success: true, user })
52+
sendResponse({ success: true, result: user })
5353
}).catch((e) => {
5454
console.error(e)
5555
sendResponse({ success: false })

src/content.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
sendClearCachedRandomSetMessage,
99
sendGetInjectionTargetsMessage,
1010
sendGetRestrictedKeywordsMessage,
11-
sendIdentityUserMessage as sendIdentifyUserMessage,
11+
sendIdentifyUserMessage,
1212
} from "./pages/content-script/messageSenders"
1313
import {
1414
registerFlipCardEvent,

src/pages/content-script/messageSenders.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export function sendPronounceMessage(text: string, langCode: string) {
8989
})
9090
}
9191

92-
export function sendIdentityUserMessage() {
92+
export function sendIdentifyUserMessage() {
9393
return new Promise<any>((resolve, reject) => {
9494
sendMessage(ChromeMessageTypeIdentifyUser, null, resolve, reject)
9595
})

webpack.config.prod.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module.exports = ({ heapId }, { mode }) => {
2525
content: path.join(__dirname, "src/content.tsx"),
2626
background: path.join(__dirname, "src/background.ts"),
2727
},
28-
output: { path: path.join(__dirname, "dist"), filename: "[name].js", publicPath: '/' },
28+
output: { path: path.join(__dirname, "dist"), filename: "[name].js", publicPath: '/', clean: true },
2929
module: {
3030
rules: [
3131
{
@@ -120,9 +120,6 @@ module.exports = ({ heapId }, { mode }) => {
120120
case "development":
121121
return "./.env"
122122

123-
case "none":
124-
return "./test.env"
125-
126123
case "production":
127124
return "./prod.env"
128125

0 commit comments

Comments
 (0)