web-core-tcm 0.0.26 → 0.0.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "web-core-tcm",
3
- "version": "0.0.26",
3
+ "version": "0.0.28",
4
4
  "description": "Core",
5
5
  "productName": "Core",
6
6
  "author": "wywywywywywywywywy <qa123456_0714@qq.com>",
@@ -12,7 +12,8 @@
12
12
  "dev": "quasar dev",
13
13
  "build": "quasar build",
14
14
  "postinstall": "quasar prepare",
15
- "lint:fix": "eslint --fix"
15
+ "lint:fix": "eslint --fix",
16
+ "postbuild": "powershell -Command \"Get-ChildItem -Path 'src/api' -Recurse -Filter 'globals.d.ts' | ForEach-Object { $destPath = Join-Path 'dist/src' ($_.FullName.Substring((Get-Location).Path.Length + 5)); $destDir = Split-Path $destPath -Parent; if (!(Test-Path $destDir)) { New-Item -ItemType Directory -Path $destDir -Force | Out-Null }; Copy-Item -Path $_.FullName -Destination $destPath -Force }\""
16
17
  },
17
18
  "dependencies": {
18
19
  "@alova/adapter-axios": "^1.2.6",
@@ -45,6 +46,7 @@
45
46
  "@vue/eslint-config-prettier": "^10.1.0",
46
47
  "@vue/eslint-config-typescript": "^14.4.0",
47
48
  "autoprefixer": "^10.4.2",
49
+ "cpy-cli": "^6.0.0",
48
50
  "eslint": "^9.14.0",
49
51
  "eslint-plugin-vue": "^10.4.0",
50
52
  "globals": "^16.4.0",
@@ -67,7 +69,7 @@
67
69
  "dist"
68
70
  ],
69
71
  "exports": {
70
- "./api/algorithm": "./dist/src/api/patient/index.d.ts",
72
+ "./api/algorithm": "./dist/src/api/algorithm/index.d.ts",
71
73
  "./api/authorization": "./dist/api/authorization/index.d.ts",
72
74
  "./api/check": "./dist/src/api/check/index.d.ts",
73
75
  "./api/config": "./dist/src/api/config/index.d.ts",
@@ -1,5 +0,0 @@
1
- export function connectToSerialPort(): Promise<boolean>;
2
- export function getPortInfo(): any;
3
- export function disconnectToSerialPort(): Promise<void>;
4
- export function sendText(text: any): Promise<void>;
5
- export const port: import('vue').Ref<any, any>;
@@ -1,2 +0,0 @@
1
- declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
2
- export default _default;
@@ -1,2 +0,0 @@
1
- export function generateRandomString(length: any): string;
2
- export function generateCodeChallenge(codeVerifier: any): any;