diff --git a/LICENSE.txt b/LICENSE similarity index 100% rename from LICENSE.txt rename to LICENSE diff --git a/README.md b/README.md index e8cc2d2..fa64e0c 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,9 @@ $ npm install @apexlang/core ## Usage (node v12+) ```js -import { parse, validate } from "@apexlang/core/index.js"; -import { CommonRules } from "@apexlang/core/rules/index.js"; -import { AbstractVisitor, Context, Writer } from "@apexlang/core/ast/index.js"; +import { parse, validate } from "@apexlang/core/mod.js"; +import { CommonRules } from "@apexlang/core/rules/mod.js"; +import { AbstractVisitor, Context, Writer } from "@apexlang/core/ast/mod.js"; const source = ` namespace "mandelbrot" @@ -47,9 +47,9 @@ if (errors.length > 0) { ```html