Add local roboto

This commit is contained in:
Paulus Schoutsen
2016-04-08 00:09:52 -07:00
parent a8d3b71f9f
commit d9232df18b
5 changed files with 158 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
var fs = require('fs');
var path = 'bower_components/paper-styles/typography.html';
var html = fs.readFileSync(path).toString();
var fixedHtml = html.replace('<link rel="import" href="../font-roboto/roboto.html">', '');
fs.writeFileSync(path, fixedHtml);