Skip to content

Commit 10ed13a

Browse files
committed
Add package-lock to .gitignore
1 parent ccf52d3 commit 10ed13a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ electron/pub
1919
/config.json.*
2020
/config.local*.json
2121
/src/component-index.js
22+
23+
# https://github.com/vector-im/riot-web/issues/7083
24+
package-lock.json

src/vector/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ require('gfm.css/gfm.css');
2525
require('highlight.js/styles/github.css');
2626
require('draft-js/dist/Draft.css');
2727

28-
const rageshake = require("matrix-react-sdk/lib/rageshake/rageshake");
28+
/*const rageshake = require("matrix-react-sdk/lib/rageshake/rageshake");
2929
rageshake.init().then(() => {
3030
console.log("Initialised rageshake: See https://bugs.chromium.org/p/chromium/issues/detail?id=583193 to fix line numbers on Chrome.");
3131
rageshake.cleanup();
3232
}, (err) => {
3333
console.error("Failed to initialise rageshake: " + err);
34-
});
34+
});*/
3535

3636
window.addEventListener('beforeunload', (e) => {
3737
console.log('riot-web closing');

0 commit comments

Comments
 (0)