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

feature(parse): scxml import #61

Merged
merged 14 commits into from
Jul 28, 2019
Merged
Show file tree
Hide file tree
Changes from 4 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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ docs/dev/index.html: docs/index.hbs docs/config/dev.json
node utl/cutHandlebarCookie.js docs/config/dev.json < $< > $@

docs/dev/smcat-online-interpreter.bundle.js: $(ONLINE_INTERPRETER_SOURCES)
$(WEBPACK) --env dev --mode development --progress
$(WEBPACK) --env dev --progress

docs/dev/smcat-online-interpreter.bundle.js.map: docs/dev/smcat-online-interpreter.bundle.js

docs/smcat-online-interpreter.min.js: $(ONLINE_INTERPRETER_SOURCES)
$(WEBPACK) --env prod --mode production --progress
$(WEBPACK) --env prod --progress

docs: $(GENERATED_SOURCES)

Expand Down
376 changes: 198 additions & 178 deletions docs/dependency-cruiser-graph.html

Large diffs are not rendered by default.

Binary file modified docs/dependencygraph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions docs/dev/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,14 @@
</label>
</span>
</li>
<li class="mdl-list__item">
<span class="mdl-list__item-primary-content">
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="input_scxml">
<input type="radio" id="input_scxml" class="mdl-radio__button" name="inputTyperg" value="scxml">
<span class="mdl-radio__label">SCXML</em></span>
</label>
</span>
</li>
</fieldset>
<fieldset>
<legend>Render parameters</legend>
Expand Down
Loading