@podlite/editor-react 0.0.20 → 0.0.21
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/lib/index.cjs +7 -6
- 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 +5 -3
- package/src/index.tsx +0 -372
package/lib/index.esm.js
CHANGED
|
@@ -21761,7 +21761,7 @@ var require_package = __commonJS({
|
|
|
21761
21761
|
"../podlite-schema/package.json"(exports, module) {
|
|
21762
21762
|
module.exports = {
|
|
21763
21763
|
name: "@podlite/schema",
|
|
21764
|
-
version: "0.0.
|
|
21764
|
+
version: "0.0.15",
|
|
21765
21765
|
description: "AST tools for Podlite markup language",
|
|
21766
21766
|
main: "./src/index.ts",
|
|
21767
21767
|
types: "./lib/index.d.ts",
|
|
@@ -21769,6 +21769,7 @@ var require_package = __commonJS({
|
|
|
21769
21769
|
files: [
|
|
21770
21770
|
"lib/**/*.js",
|
|
21771
21771
|
"lib/**/*.d.ts",
|
|
21772
|
+
"esm",
|
|
21772
21773
|
"schema/*",
|
|
21773
21774
|
"README.md",
|
|
21774
21775
|
"CHANGELOG.md"
|
|
@@ -21780,14 +21781,14 @@ var require_package = __commonJS({
|
|
|
21780
21781
|
publishConfig: {
|
|
21781
21782
|
access: "public",
|
|
21782
21783
|
main: "lib/index.js",
|
|
21783
|
-
types: "./lib/index.d.ts"
|
|
21784
|
+
types: "./lib/index.d.ts",
|
|
21785
|
+
module: "./esm/index.js"
|
|
21784
21786
|
},
|
|
21785
21787
|
scripts: {
|
|
21786
|
-
clean: "rm -rf lib esm
|
|
21787
|
-
build: "run-s build:pegjs
|
|
21788
|
+
clean: "rm -rf lib esm *.tsbuildinfo",
|
|
21789
|
+
build: "run-s build:pegjs build_lib build:ast ",
|
|
21790
|
+
build_lib: "yarn g:build",
|
|
21788
21791
|
"build:ast": "ts-node scripts/make-ast-scheme.ts",
|
|
21789
|
-
"build:ts": "yarn g:tsc --build $INIT_CWD",
|
|
21790
|
-
"build:esm": "yarn g:tsctest -p tsconfig.esm.json",
|
|
21791
21792
|
"build:pegjs": "pegjs -o src/grammar.js src/grammar.pegjs && pegjs -o src/grammarfc.js src/grammarfc.pegjs",
|
|
21792
21793
|
watch: "npx nodemon -e js,ts --exec 'yarn' build",
|
|
21793
21794
|
"watch:pegjs": "npx nodemon -e pegjs --exec 'yarn' build:pegjs",
|