@_tc/template-core 0.0.1-bate.27 → 0.0.1-bate.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { getAppPath } from "../../packages/core/paths.js";
|
|
2
|
-
import nunjucks
|
|
3
|
-
import path
|
|
2
|
+
import nunjucks from "nunjucks.js";
|
|
3
|
+
import path from "path.js";
|
|
4
4
|
export default (app) => {
|
|
5
5
|
const viewsPath = path.join(getAppPath(app, "frame"), "./public");
|
|
6
6
|
const env = nunjucks.configure(viewsPath, {
|
package/esm/app/service/bese.js
CHANGED
package/esm/bundler/utils.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import path
|
|
2
|
-
import * as glob
|
|
1
|
+
import path from "path.js";
|
|
2
|
+
import * as glob from "glob.js";
|
|
3
3
|
import { build } from "vite.js";
|
|
4
4
|
import { resolve } from "../packages/utils.js";
|
|
5
5
|
import { copyFileSync, existsSync, readdirSync, readFileSync, rmdirSync, unlinkSync, writeFileSync, } from "fs.js";
|