remove wrong import way

This commit is contained in:
geekgeekrun
2026-01-17 11:34:13 +08:00
parent 55a04bb1ad
commit 5634ac0260
29 changed files with 66 additions and 59 deletions

View File

@@ -33,14 +33,14 @@
"@geekgeekrun/dingtalk-plugin": "workspace:*",
"@geekgeekrun/geek-auto-start-chat-with-boss": "workspace:*",
"@geekgeekrun/launch-bosszhipin-login-page-with-preload-extension": "workspace:*",
"@geekgeekrun/pm": "workspace:*",
"@geekgeekrun/puppeteer-extra-plugin-laodeng": "workspace:*",
"@geekgeekrun/sqlite-plugin": "workspace:*",
"@geekgeekrun/utils": "workspace:*",
"@geekgeekrun/pm": "workspace:*",
"JSONStream": "^1.3.5",
"diff": "^7.0.0",
"electron-updater": "^6.1.7",
"lodash-es": "^4.17.21",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"mitt": "^3.0.1",
"node-machine-id": "^1.1.12",
@@ -58,6 +58,7 @@
"@inquirer/select": "^4.0.1",
"@puppeteer/browsers": "^2.11.0",
"@rushstack/eslint-patch": "^1.7.1",
"@types/lodash": "^4.17.23",
"@types/node": "^18.19.9",
"@unocss/preset-attributify": "^0.58.5",
"@unocss/preset-icons": "^0.58.5",

View File

@@ -11,7 +11,7 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue'
import { random } from 'lodash-es'
import { random } from 'lodash'
const rowCount = 4
const colCount = 6

View File

@@ -18,7 +18,7 @@
<script lang="ts" setup>
import { gtagRenderer } from '@renderer/utils/gtag'
import debounce from 'lodash-es/debounce'
import debounce from 'lodash/debounce'
const { ipcRenderer } = electron
const handleOpenChromeDownloadPage = debounce(

View File

@@ -1079,7 +1079,7 @@ import {
SalaryCalculateWay,
JobDetailRegExpMatchLogic
} from '@geekgeekrun/sqlite-plugin/src/enums'
import { debounce } from 'lodash-es'
import { debounce } from 'lodash'
import mittBus from '../../../utils/mitt'
import CityChooser from './components/CityChooser.vue'
import conditions from '@geekgeekrun/geek-auto-start-chat-with-boss/internal-config/job-filter-conditions-20241002.json'

View File

@@ -150,7 +150,7 @@ import { onMounted, onUnmounted } from 'vue'
import { useRouter } from 'vue-router'
import { TopRight, QuestionFilled } from '@element-plus/icons-vue'
import useBuildInfo from '@renderer/hooks/useBuildInfo'
import { debounce } from 'lodash-es'
import { debounce } from 'lodash'
import { gtagRenderer } from '@renderer/utils/gtag'
import { useUpdateStore, useTaskManagerStore } from '../../store/index'

View File

@@ -1,7 +1,7 @@
import { defineStore } from 'pinia'
import { NewReleaseInfo } from '../../../common/types/update'
import { ref } from 'vue'
import { throttle } from 'lodash-es'
import { throttle } from 'lodash'
export const useUpdateStore = defineStore('update', () => {
const availableNewRelease = ref<NewReleaseInfo | null>(null)