Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP #8

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/internal/testing/parser/Parser.js
193 changes: 192 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,19 @@
"build_spec": "npm-run-all build_cjs generate_packages copy_for_tests",
"build_spec_full": "npm-run-all compat_build_cjs compile_legacy_reexport compat_generate_packages build_spec",
"build_spec_browser": "webpack --config spec/support/webpack.mocha.config.js",
"build_marble_parser": "jison ./src/internal/testing/parser/grammar.jison --outfile ./src/internal/testing/parser/Parser.js --module-type commonjs",
"clean_dist": "shx rm -rf ./dist",
"clean_dist_cjs": "shx rm -rf ./dist/cjs",
"clean_dist_esm5": "shx rm -rf ./dist/esm5",
"clean_dist_esm5_for_rollup": "shx rm -rf ./dist/esm5_for_rollup",
"clean_dist_esm2015": "shx rm -rf ./dist/esm2015",
"clean_dist_global": "shx rm -rf ./dist/global",
"commit": "git-cz",
"compile_dist_cjs": "tsc -p ./tsconfig/tsconfig.cjs.json",
"compile_dist_esm5": "tsc -p ./tsconfig/tsconfig.esm5.json",
"compile_dist_esm2015": "tsc -p ./tsconfig/tsconfig.esm2015.json",
"compile_dist_cjs": "tsc -p ./tsconfig/tsconfig.cjs.json && shx cp -r ./dist/src/internal/testing/parser ./dist/cjs/internal/testing/parser",
"compile_dist_esm5": "tsc -p ./tsconfig/tsconfig.esm5.json && shx cp -r ./dist/src/internal/testing/parser ./dist/esm5/internal/testing/parser",
"compile_dist_esm2015": "tsc -p ./tsconfig/tsconfig.esm2015.json && shx cp -r ./dist/src/internal/testing/parser ./dist/esm2015/internal/testing/parser",
"compile_dist_esm2015_for_docs": "tsc ./dist/src/internal/Rx.ts ./dist/src/add/observable/of.ts ./dist/src/MiscJSDoc.ts -m es2015 --sourceMap --outDir ./dist/es6 --target es2015 -d --diagnostics --pretty --noImplicitAny --noImplicitReturns --noImplicitThis --suppressImplicitAnyIndexErrors --moduleResolution node",
"compile_dist_esm5_for_rollup": "tsc -p ./tsconfig/tsconfig.esm5.rollup.json",
"compile_dist_esm5_for_rollup": "tsc -p ./tsconfig/tsconfig.esm5.rollup.json && shx cp -r ./dist/src/internal/testing/parser ./dist/esm5_for_rollup/internal/testing/parser",
"compile_legacy_reexport": "tsc -p ./tsconfig/tsconfig.legacy-reexport.json",
"copy_sources": "mkdirp dist && shx cp -r ./src/ ./dist/src",
"copy_for_tests": "shx rm -rf ./spec-build && shx cp -r ./spec/ ./spec-build/ && mkdirp ./spec-build/node_modules && shx cp -r ./dist/package/ ./spec-build/node_modules/rxjs && shx cp -r ./dist-compat/package/ ./spec-build/node_modules/rxjs-compat",
Expand Down Expand Up @@ -221,6 +222,7 @@
"gzip-size": "4.1.0",
"http-server": "0.11.1",
"husky": "0.14.3",
"jison": "^0.4.18",
"klaw-sync": "3.0.2",
"lint-staged": "3.2.5",
"lodash": "4.17.5",
Expand All @@ -237,6 +239,7 @@
"promise": "8.0.1",
"protractor": "3.1.1",
"rollup": "0.36.3",
"rollup-plugin-commonjs": "8.3.0",
"rollup-plugin-inject": "2.0.0",
"rollup-plugin-node-resolve": "2.0.0",
"rx": "latest",
Expand Down
Loading