@_tc/template-core 0.0.1-bate.6 → 0.0.1-bate.7
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/app/pages/home/home.entry.d.ts +2 -0
- package/app/pages/home/home.entry.d.ts.map +1 -0
- package/app/pages/home/home.entry.js +4 -0
- package/app/pages/home/home.entry.js.map +1 -0
- package/app/pages/main/App.d.ts +5 -0
- package/app/pages/main/App.d.ts.map +1 -0
- package/app/pages/main/App.js +9 -0
- package/app/pages/main/App.js.map +1 -0
- package/app/pages/main/main.d.ts +2 -0
- package/app/pages/main/main.d.ts.map +1 -0
- package/app/pages/main/main.js +11 -0
- package/app/pages/main/main.js.map +1 -0
- package/app/pages/video/video.entry.d.ts +2 -0
- package/app/pages/video/video.entry.d.ts.map +1 -0
- package/app/pages/video/video.entry.js +4 -0
- package/app/pages/video/video.entry.js.map +1 -0
- package/app/vite/package.json +0 -1
- package/package.json +7 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"home.entry.d.ts","sourceRoot":"","sources":["../../../../app/pages/home/home.entry.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"home.entry.js","sourceRoot":"","sources":["../../../../app/pages/home/home.entry.ts"],"names":[],"mappings":";;AAAA,sBAAoB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../../../app/pages/main/App.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,aAAa,CAAC;AAErB,QAAA,MAAM,GAAG,EAAE,KAAK,CAAC,EAEhB,CAAC;AAEF,eAAe,GAAG,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const jsx_runtime_1 = require("react/jsx-runtime");
|
|
4
|
+
require("./index.css");
|
|
5
|
+
const App = () => {
|
|
6
|
+
return (0, jsx_runtime_1.jsx)("div", { children: "main" });
|
|
7
|
+
};
|
|
8
|
+
exports.default = App;
|
|
9
|
+
//# sourceMappingURL=App.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"App.js","sourceRoot":"","sources":["../../../../app/pages/main/App.tsx"],"names":[],"mappings":";;;AACA,uBAAqB;AAErB,MAAM,GAAG,GAAa,GAAG,EAAE;IACzB,OAAO,mDAAe,CAAC;AACzB,CAAC,CAAC;AAEF,kBAAe,GAAG,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.d.ts","sourceRoot":"","sources":["../../../../app/pages/main/main.tsx"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const react_1 = __importDefault(require("react"));
|
|
7
|
+
const client_1 = __importDefault(require("react-dom/client"));
|
|
8
|
+
const App_1 = __importDefault(require("./App"));
|
|
9
|
+
const root = client_1.default.createRoot(document.getElementById("root"));
|
|
10
|
+
root.render(react_1.default.createElement(react_1.default.StrictMode, null, react_1.default.createElement(App_1.default)));
|
|
11
|
+
//# sourceMappingURL=main.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"main.js","sourceRoot":"","sources":["../../../../app/pages/main/main.tsx"],"names":[],"mappings":";;;;;AAAA,kDAA0B;AAC1B,8DAAwC;AACxC,gDAAwB;AAExB,MAAM,IAAI,GAAG,gBAAQ,CAAC,UAAU,CAAC,QAAQ,CAAC,cAAc,CAAC,MAAM,CAAE,CAAC,CAAC;AACnE,IAAI,CAAC,MAAM,CACT,eAAK,CAAC,aAAa,CAAC,eAAK,CAAC,UAAU,EAAE,IAAI,EAAE,eAAK,CAAC,aAAa,CAAC,aAAG,CAAC,CAAC,CACtE,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"video.entry.d.ts","sourceRoot":"","sources":["../../../../app/pages/video/video.entry.ts"],"names":[],"mappings":"AAAA,OAAO,YAAY,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"video.entry.js","sourceRoot":"","sources":["../../../../app/pages/video/video.entry.ts"],"names":[],"mappings":";;AAAA,sBAAoB"}
|
package/app/vite/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@_tc/template-core",
|
|
3
|
-
"version": "0.0.1-bate.
|
|
3
|
+
"version": "0.0.1-bate.7",
|
|
4
4
|
"description": "A TypeScript Koa framework template - Monorepo root",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"types": "./index.d.ts",
|
|
@@ -9,9 +9,15 @@
|
|
|
9
9
|
"import": "./app/vite/index.js",
|
|
10
10
|
"require": "./app/vite/index.js",
|
|
11
11
|
"types": "./app/vite/index.d.ts"
|
|
12
|
+
},
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./index.js",
|
|
15
|
+
"require": "./index.js",
|
|
16
|
+
"types": "./index.d.ts"
|
|
12
17
|
}
|
|
13
18
|
},
|
|
14
19
|
"dependencies": {
|
|
20
|
+
"@_tc/template-core": "link:dist",
|
|
15
21
|
"ajv": "^8.18.0",
|
|
16
22
|
"glob": "^10.3.10",
|
|
17
23
|
"knex": "^3.2.3",
|