adminforth 2.1.0-next.5 → 2.1.0-next.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.
@@ -3,5 +3,5 @@ WORKDIR /code/
3
3
  ADD package.json package-lock.json /code/
4
4
  RUN npm ci
5
5
  ADD . /code/
6
- RUN --mount=type=cache,target=/tmp npx adminforth bundle
6
+ RUN npx adminforth bundle
7
7
  CMD ["sh", "-c", "npm run migrate:prod && npm run prod"]
@@ -1,4 +1,3 @@
1
- import { stringify } from 'flatted';
2
1
  import { callTsProxy, findAdminInstance } from "../callTsProxy.js";
3
2
  import { toTitleCase } from '../utils.js';
4
3
  import { generateResourceFile } from "./generateResourceFile.js";
@@ -8,7 +7,6 @@ import { select } from "@inquirer/prompts";
8
7
  export default async function createResource(args) {
9
8
  console.log("Bundling admin SPA...");
10
9
  const instance = await findAdminInstance();
11
- console.log("🪲 AdminForth config:", stringify(instance.file));
12
10
  console.log("🪲 Found admin instance:", instance.file);
13
11
  console.log("🪲 Found admin instance:", instance.file);
14
12
  console.log(JSON.stringify(instance));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adminforth",
3
- "version": "2.1.0-next.5",
3
+ "version": "2.1.0-next.7",
4
4
  "description": "OpenSource Vue3 powered forth-generation admin panel",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",