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

sync dev to master #138

Merged
merged 13 commits into from
Dec 1, 2019
Prev Previous commit
Next Next commit
buildScripts: adjusted the hashHistory for dev&prod builds
  • Loading branch information
tobiu committed Nov 29, 2019
commit 918f6ef104118ead86f1ca67e880a4bf22a16faa
2 changes: 1 addition & 1 deletion buildScripts/webpack/entrypoints/App.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class App extends Worker {
* @param {Object} data parsed key-value pairs for each hash value
*/
onHashChange(data) {
HashHistory.push(data.hash);
HashHistory.push(data.hash, data.hashString);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion test/siesta/docs/tests/Main.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Main from '../../../../src/Main.mjs';
console.log(Main);

StartTest(t => {
t.it("Sanity", t => {
t.ok(Main, 'Main is imported as a JS module');
Expand Down