arcanajs 2.3.1 → 2.3.2

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,3 +1,4 @@
1
+ /// <reference path="./global.d.ts" />
1
2
  export * from "./shared/components/Body";
2
3
  export * from "./shared/components/Head";
3
4
  export * from "./shared/components/Link";
@@ -1,7 +1,5 @@
1
1
  "use strict";
2
- // ============================================================================
3
- // Component Exports
4
- // ============================================================================
2
+ /// <reference path="./global.d.ts" />
5
3
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
6
4
  if (k2 === undefined) k2 = k;
7
5
  var desc = Object.getOwnPropertyDescriptor(m, k);
@@ -21,6 +19,9 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
21
19
  };
22
20
  Object.defineProperty(exports, "__esModule", { value: true });
23
21
  exports.NotFoundPage = exports.ErrorPage = void 0;
22
+ // ============================================================================
23
+ // Component Exports
24
+ // ============================================================================
24
25
  __exportStar(require("./shared/components/Body"), exports);
25
26
  __exportStar(require("./shared/components/Head"), exports);
26
27
  __exportStar(require("./shared/components/Link"), exports);
@@ -8,7 +8,7 @@
8
8
  "start": "arcanajs start"
9
9
  },
10
10
  "dependencies": {
11
- "arcanajs": "^2.3.1",
11
+ "arcanajs": "^2.3.2",
12
12
  "react": "^19.2.0",
13
13
  "react-dom": "^19.2.0"
14
14
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arcanajs",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "ArcanaJS Framework",
5
5
  "main": "framework/lib/index.js",
6
6
  "types": "framework/lib/index.d.ts",
@@ -35,7 +35,7 @@
35
35
  "bin"
36
36
  ],
37
37
  "scripts": {
38
- "build": "tsc -p tsconfig.json && cp src/lib/server/default-index.html framework/lib/server/ && cp src/lib/global.d.ts framework/lib/ && cp -r src/templates framework/ && cp src/templates/arcanajs.config.ts framework/templates/"
38
+ "build": "tsc -p tsconfig.json && cp src/lib/server/default-index.html framework/lib/server/ && cp src/lib/global.d.ts framework/lib/ && cp -r src/templates framework/ && cp src/templates/arcanajs.config.ts framework/templates/ && echo '/// <reference path=\"./global.d.ts\" />' | cat - framework/lib/index.d.ts > temp && mv temp framework/lib/index.d.ts"
39
39
  },
40
40
  "dependencies": {
41
41
  "@babel/core": "^7.23.0",