@absolutejs/absolute 0.1.11 → 0.1.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/absolute",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "A fullstack meta-framework for building web applications with TypeScript",
5
5
  "repository": {
6
6
  "type": "git",
package/src/core/build.ts CHANGED
@@ -30,6 +30,15 @@ export const build = async ({
30
30
  }: BuildConfig = {}) => {
31
31
  const start = performance.now();
32
32
  console.log("Building start");
33
+ console.log("Build config", {
34
+ buildDir,
35
+ assetsDir,
36
+ reactIndexDir,
37
+ javascriptDir,
38
+ typeScriptDir,
39
+ reactPagesDir,
40
+ htmlDir
41
+ });
33
42
 
34
43
  console.log("Creating build directory");
35
44
  const projectRoot = cwd();
@@ -1,3 +1,3 @@
1
1
  import { build } from "../core/build";
2
2
 
3
- const manifest = await build();
3
+ const manifest = await build({});