@lovrabet/sdk 1.1.11-beta.0 → 1.1.12
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/dist/index.d.ts +0 -2
- package/dist/index.js +1 -1
- package/package.json +2 -5
- package/dist/src/version.d.ts +0 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lovrabet/sdk",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.12",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -26,10 +26,7 @@
|
|
|
26
26
|
"test:watch": "vitest watch",
|
|
27
27
|
"types": "npx tsc --emitDeclarationOnly --declaration --outDir dist index.ts",
|
|
28
28
|
"beta-release": "bun run build && sh scripts/update-beta-version.sh && git push && git push origin --tag && bun publish",
|
|
29
|
-
"release": "bun run build && bun pm version patch && git push && git push origin --tag && bun publish"
|
|
30
|
-
"version:generate": "node scripts/generate-version.js",
|
|
31
|
-
"prebuild": "npm run version:generate",
|
|
32
|
-
"prebuild:dev": "npm run version:generate"
|
|
29
|
+
"release": "bun run build && bun pm version patch && git push && git push origin --tag && bun publish"
|
|
33
30
|
},
|
|
34
31
|
"files": [
|
|
35
32
|
"dist"
|
package/dist/src/version.d.ts
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* SDK 版本信息
|
|
3
|
-
* 此文件由构建脚本自动生成,请勿手动修改
|
|
4
|
-
* @generated
|
|
5
|
-
*/
|
|
6
|
-
/** SDK 版本号 */
|
|
7
|
-
export declare const VERSION = "1.1.10";
|
|
8
|
-
/** SDK 包名 */
|
|
9
|
-
export declare const PACKAGE_NAME = "@lovrabet/sdk";
|
|
10
|
-
/** 获取完整的版本信息 */
|
|
11
|
-
export declare function getVersionInfo(): {
|
|
12
|
-
version: string;
|
|
13
|
-
package: string;
|
|
14
|
-
userAgent: string;
|
|
15
|
-
};
|
|
16
|
-
/** 默认导出版本号 */
|
|
17
|
-
export default VERSION;
|