@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.cjs
CHANGED
|
@@ -21765,7 +21765,7 @@ var require_package = __commonJS({
|
|
|
21765
21765
|
"../podlite-schema/package.json"(exports, module2) {
|
|
21766
21766
|
module2.exports = {
|
|
21767
21767
|
name: "@podlite/schema",
|
|
21768
|
-
version: "0.0.
|
|
21768
|
+
version: "0.0.15",
|
|
21769
21769
|
description: "AST tools for Podlite markup language",
|
|
21770
21770
|
main: "./src/index.ts",
|
|
21771
21771
|
types: "./lib/index.d.ts",
|
|
@@ -21773,6 +21773,7 @@ var require_package = __commonJS({
|
|
|
21773
21773
|
files: [
|
|
21774
21774
|
"lib/**/*.js",
|
|
21775
21775
|
"lib/**/*.d.ts",
|
|
21776
|
+
"esm",
|
|
21776
21777
|
"schema/*",
|
|
21777
21778
|
"README.md",
|
|
21778
21779
|
"CHANGELOG.md"
|
|
@@ -21784,14 +21785,14 @@ var require_package = __commonJS({
|
|
|
21784
21785
|
publishConfig: {
|
|
21785
21786
|
access: "public",
|
|
21786
21787
|
main: "lib/index.js",
|
|
21787
|
-
types: "./lib/index.d.ts"
|
|
21788
|
+
types: "./lib/index.d.ts",
|
|
21789
|
+
module: "./esm/index.js"
|
|
21788
21790
|
},
|
|
21789
21791
|
scripts: {
|
|
21790
|
-
clean: "rm -rf lib esm
|
|
21791
|
-
build: "run-s build:pegjs
|
|
21792
|
+
clean: "rm -rf lib esm *.tsbuildinfo",
|
|
21793
|
+
build: "run-s build:pegjs build_lib build:ast ",
|
|
21794
|
+
build_lib: "yarn g:build",
|
|
21792
21795
|
"build:ast": "ts-node scripts/make-ast-scheme.ts",
|
|
21793
|
-
"build:ts": "yarn g:tsc --build $INIT_CWD",
|
|
21794
|
-
"build:esm": "yarn g:tsctest -p tsconfig.esm.json",
|
|
21795
21796
|
"build:pegjs": "pegjs -o src/grammar.js src/grammar.pegjs && pegjs -o src/grammarfc.js src/grammarfc.pegjs",
|
|
21796
21797
|
watch: "npx nodemon -e js,ts --exec 'yarn' build",
|
|
21797
21798
|
"watch:pegjs": "npx nodemon -e pegjs --exec 'yarn' build:pegjs",
|