@podlite/markdown 0.0.7 → 0.0.8
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/README.md +1 -1
- package/lib/index.cjs +16 -16
- package/lib/index.cjs.map +1 -1
- package/lib/index.esm.js +7 -6
- package/lib/index.esm.js.map +1 -1
- package/package.json +4 -4
package/lib/index.esm.js
CHANGED
|
@@ -21600,7 +21600,7 @@ var require_package = __commonJS({
|
|
|
21600
21600
|
"../podlite-schema/package.json"(exports, module) {
|
|
21601
21601
|
module.exports = {
|
|
21602
21602
|
name: "@podlite/schema",
|
|
21603
|
-
version: "0.0.
|
|
21603
|
+
version: "0.0.15",
|
|
21604
21604
|
description: "AST tools for Podlite markup language",
|
|
21605
21605
|
main: "./src/index.ts",
|
|
21606
21606
|
types: "./lib/index.d.ts",
|
|
@@ -21608,6 +21608,7 @@ var require_package = __commonJS({
|
|
|
21608
21608
|
files: [
|
|
21609
21609
|
"lib/**/*.js",
|
|
21610
21610
|
"lib/**/*.d.ts",
|
|
21611
|
+
"esm",
|
|
21611
21612
|
"schema/*",
|
|
21612
21613
|
"README.md",
|
|
21613
21614
|
"CHANGELOG.md"
|
|
@@ -21619,14 +21620,14 @@ var require_package = __commonJS({
|
|
|
21619
21620
|
publishConfig: {
|
|
21620
21621
|
access: "public",
|
|
21621
21622
|
main: "lib/index.js",
|
|
21622
|
-
types: "./lib/index.d.ts"
|
|
21623
|
+
types: "./lib/index.d.ts",
|
|
21624
|
+
module: "./esm/index.js"
|
|
21623
21625
|
},
|
|
21624
21626
|
scripts: {
|
|
21625
|
-
clean: "rm -rf lib esm
|
|
21626
|
-
build: "run-s build:pegjs
|
|
21627
|
+
clean: "rm -rf lib esm *.tsbuildinfo",
|
|
21628
|
+
build: "run-s build:pegjs build_lib build:ast ",
|
|
21629
|
+
build_lib: "yarn g:build",
|
|
21627
21630
|
"build:ast": "ts-node scripts/make-ast-scheme.ts",
|
|
21628
|
-
"build:ts": "yarn g:tsc --build $INIT_CWD",
|
|
21629
|
-
"build:esm": "yarn g:tsctest -p tsconfig.esm.json",
|
|
21630
21631
|
"build:pegjs": "pegjs -o src/grammar.js src/grammar.pegjs && pegjs -o src/grammarfc.js src/grammarfc.pegjs",
|
|
21631
21632
|
watch: "npx nodemon -e js,ts --exec 'yarn' build",
|
|
21632
21633
|
"watch:pegjs": "npx nodemon -e pegjs --exec 'yarn' build:pegjs",
|