@aeriajs/cli 0.0.202 → 0.0.203

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,4 +1,3 @@
1
- export declare const GLOB_PATTERN = "**/*.aeria";
2
1
  export declare const OUT_DIR = ".aeria/out";
3
2
  export declare const buildAeriaLangPhase: () => Promise<{
4
3
  readonly _tag: "Error";
@@ -1,9 +1,8 @@
1
1
  import { Result } from '@aeriajs/types';
2
2
  import { compileFromFiles } from '@aeriajs/compiler';
3
- export const GLOB_PATTERN = '**/*.aeria';
4
3
  export const OUT_DIR = '.aeria/out';
5
4
  export const buildAeriaLangPhase = async () => {
6
- const result = await compileFromFiles(GLOB_PATTERN, {
5
+ const result = await compileFromFiles({
7
6
  outDir: OUT_DIR,
8
7
  });
9
8
  if (!result.success) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aeriajs/cli",
3
3
  "type": "module",
4
- "version": "0.0.202",
4
+ "version": "0.0.203",
5
5
  "description": "",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.mjs",
@@ -11,8 +11,8 @@
11
11
  },
12
12
  "exports": {
13
13
  ".": {
14
- "import": "./dist/index.js",
15
- "types": "./dist/index.d.ts"
14
+ "types": "./dist/index.d.ts",
15
+ "import": "./dist/index.js"
16
16
  },
17
17
  "./config/*": "./dist/config/*"
18
18
  },
@@ -42,7 +42,7 @@
42
42
  "peerDependencies": {
43
43
  "@aeriajs/builtins": "^0.0.244",
44
44
  "@aeriajs/common": "^0.0.136",
45
- "@aeriajs/compiler": "^0.0.16",
45
+ "@aeriajs/compiler": "^0.0.17",
46
46
  "@aeriajs/core": "^0.0.244",
47
47
  "@aeriajs/entrypoint": "^0.0.140",
48
48
  "@aeriajs/types": "^0.0.118"