@vrplatform/log 2.0.0-alpha.45 → 2.0.0-alpha.48
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/build/main/log/index.spec.d.ts +0 -0
- package/build/main/log/index.spec.js +2 -0
- package/build/main/log/index.spec.js.map +1 -0
- package/build/main/tracking/types.d.ts +224 -234
- package/build/module/log/index.spec.d.ts +0 -0
- package/build/module/log/index.spec.js +2 -0
- package/build/module/log/index.spec.js.map +1 -0
- package/build/module/tracking/types.d.ts +224 -234
- package/package.json +20 -22
- package/src/tracking/types.ts +448 -424
package/package.json
CHANGED
|
@@ -1,31 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vrplatform/log",
|
|
3
|
-
"version": "2.0.0-alpha.
|
|
4
|
-
"main": "
|
|
3
|
+
"version": "2.0.0-alpha.48",
|
|
4
|
+
"main": "build/main/index.js",
|
|
5
5
|
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
"main": "build/main/index.js",
|
|
8
|
-
"typings": "build/main/index.d.ts",
|
|
9
|
-
"module": "build/module/index.js"
|
|
6
|
+
"access": "public"
|
|
10
7
|
},
|
|
11
8
|
"description": "Finalytic cf",
|
|
12
9
|
"repository": "https://github.com/finalytic/ecosystem",
|
|
13
10
|
"license": "UNLICENSED",
|
|
14
11
|
"keywords": [],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"pub": "bun run build && npm version patch --no-commit-hooks --no-git-tag-version && npm publish --no-git-checks",
|
|
17
|
-
"pub:alpha": "bun run build && npm version prerelease --no-commit-hooks --no-git-tag-version && npm publish --no-git-checks --tag alpha",
|
|
18
|
-
"build": "bun build:main & bun build:module",
|
|
19
|
-
"build:main": "tsc -b tsconfig.main.json",
|
|
20
|
-
"build:module": "tsc -b tsconfig.esm.json",
|
|
21
|
-
"typecheck": "tsc --noEmit",
|
|
22
|
-
"lint": "biome check .",
|
|
23
|
-
"lint:fix": "biome check --apply-unsafe --skip-errors .",
|
|
24
|
-
"pre-commit": "echo precommit",
|
|
25
|
-
"pre-push": "bun typecheck && bun lint",
|
|
26
|
-
"post-merge": "bun i",
|
|
27
|
-
"prepare": "husky"
|
|
28
|
-
},
|
|
29
12
|
"files": [
|
|
30
13
|
"build/main",
|
|
31
14
|
"build/module",
|
|
@@ -49,5 +32,20 @@
|
|
|
49
32
|
},
|
|
50
33
|
"trustedDependencies": [
|
|
51
34
|
"@biomejs/biome"
|
|
52
|
-
]
|
|
53
|
-
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"pub": "bun run build && pnpm version patch --no-commit-hooks --no-git-tag-version && pnpm publish --no-git-checks",
|
|
38
|
+
"pub:alpha": "bun run build && pnpm version prerelease --no-commit-hooks --no-git-tag-version && pnpm publish --no-git-checks --tag alpha",
|
|
39
|
+
"build": "bun build:main & bun build:module",
|
|
40
|
+
"build:main": "tsc -b tsconfig.main.json",
|
|
41
|
+
"build:module": "tsc -b tsconfig.esm.json",
|
|
42
|
+
"typecheck": "tsc --noEmit",
|
|
43
|
+
"lint": "biome check .",
|
|
44
|
+
"lint:fix": "biome check --apply-unsafe --skip-errors .",
|
|
45
|
+
"pre-commit": "echo precommit",
|
|
46
|
+
"pre-push": "bun typecheck && bun lint",
|
|
47
|
+
"post-merge": "bun i"
|
|
48
|
+
},
|
|
49
|
+
"typings": "build/main/index.d.ts",
|
|
50
|
+
"module": "build/module/index.js"
|
|
51
|
+
}
|