mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Unpin react-sdk and js-sdk
This commit is contained in:
parent
0afdf5d8e4
commit
21334cab28
@ -46,8 +46,8 @@
|
|||||||
"gfm.css": "^1.1.1",
|
"gfm.css": "^1.1.1",
|
||||||
"highlight.js": "^9.0.0",
|
"highlight.js": "^9.0.0",
|
||||||
"linkifyjs": "^2.0.0-beta.4",
|
"linkifyjs": "^2.0.0-beta.4",
|
||||||
"matrix-js-sdk": "0.5.5",
|
"matrix-js-sdk": "matrix-org/matrix-js-sdk#develop",
|
||||||
"matrix-react-sdk": "0.6.4-r1",
|
"matrix-react-sdk": "matrix-org/matrix-react-sdk#develop",
|
||||||
"modernizr": "^3.1.0",
|
"modernizr": "^3.1.0",
|
||||||
"q": "^1.4.1",
|
"q": "^1.4.1",
|
||||||
"react": "^15.2.1",
|
"react": "^15.2.1",
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
#!/usr/bin/env node
|
|
||||||
|
|
||||||
// copy static files from node_modules to the vector directory
|
|
||||||
//
|
|
||||||
|
|
||||||
var fs = require('fs-extra');
|
|
||||||
|
|
||||||
function exists(f) {
|
|
||||||
try {
|
|
||||||
fs.statSync(f);
|
|
||||||
return true;
|
|
||||||
} catch(e) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const olm = 'node_modules/olm/olm.js';
|
|
||||||
if (exists(olm)) {
|
|
||||||
console.log("copy", olm, "-> vector");
|
|
||||||
fs.copySync(olm, 'vector/olm.js');
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user