@ait-co/devtools 0.1.4 → 0.1.5
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/panel/index.js +1 -1
- package/package.json +13 -14
package/dist/panel/index.js
CHANGED
|
@@ -2339,7 +2339,7 @@ function mount() {
|
|
|
2339
2339
|
mockBadge.textContent = aitState.state.panelEditable ? "EDIT" : "READ-ONLY";
|
|
2340
2340
|
refreshPanel();
|
|
2341
2341
|
});
|
|
2342
|
-
const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.
|
|
2342
|
+
const headerRight = h("span", { style: "display:flex;align-items:center;gap:6px" }, mockBadge, h("span", { style: "font-size:11px;color:#666;font-weight:400" }, `v0.1.5`), closeBtn);
|
|
2343
2343
|
const header = h("div", { className: "ait-panel-header" }, h("span", {}, "AIT DevTools"), headerRight);
|
|
2344
2344
|
tabsEl = h("div", { className: "ait-panel-tabs" });
|
|
2345
2345
|
for (const tab of TABS) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ait-co/devtools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Development tools for Apps in Toss mini-apps — mock SDK, floating devtools panel, and universal bundler plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"engines": {
|
|
@@ -30,17 +30,6 @@
|
|
|
30
30
|
"files": [
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "tsdown",
|
|
35
|
-
"dev": "tsdown --watch",
|
|
36
|
-
"typecheck": "tsc --noEmit && tsc --noEmit -p e2e/fixture/tsconfig.json",
|
|
37
|
-
"test": "vitest run",
|
|
38
|
-
"test:e2e": "playwright test",
|
|
39
|
-
"lint": "biome check .",
|
|
40
|
-
"lint:fix": "biome check --write .",
|
|
41
|
-
"format": "biome format --write .",
|
|
42
|
-
"check-sdk-update": "tsx scripts/check-sdk-update.ts"
|
|
43
|
-
},
|
|
44
33
|
"peerDependencies": {
|
|
45
34
|
"@apps-in-toss/web-framework": ">=2.4.0 <2.4.8"
|
|
46
35
|
},
|
|
@@ -72,7 +61,6 @@
|
|
|
72
61
|
"mock",
|
|
73
62
|
"sdk"
|
|
74
63
|
],
|
|
75
|
-
"packageManager": "pnpm@10.33.0",
|
|
76
64
|
"license": "BSD-3-Clause",
|
|
77
65
|
"publishConfig": {
|
|
78
66
|
"access": "public"
|
|
@@ -84,5 +72,16 @@
|
|
|
84
72
|
"homepage": "https://www.npmjs.com/package/@ait-co/devtools",
|
|
85
73
|
"bugs": {
|
|
86
74
|
"url": "https://github.com/apps-in-toss-community/devtools/issues"
|
|
75
|
+
},
|
|
76
|
+
"scripts": {
|
|
77
|
+
"build": "tsdown",
|
|
78
|
+
"dev": "tsdown --watch",
|
|
79
|
+
"typecheck": "tsc --noEmit && tsc --noEmit -p e2e/fixture/tsconfig.json",
|
|
80
|
+
"test": "vitest run",
|
|
81
|
+
"test:e2e": "playwright test",
|
|
82
|
+
"lint": "biome check .",
|
|
83
|
+
"lint:fix": "biome check --write .",
|
|
84
|
+
"format": "biome format --write .",
|
|
85
|
+
"check-sdk-update": "tsx scripts/check-sdk-update.ts"
|
|
87
86
|
}
|
|
88
|
-
}
|
|
87
|
+
}
|