Raleway included in the bower TypoPRO package.
Install it with
bower install
Since you're new to bower, here are some more tips:
Since the bower_components directory bower_components usually excluded from version control, you can copy the files you need to another directory with the grunt task.
Add the exportsOverride section to bower.json :
{ (…) "dependencies": { "typopro": … }, "exportsOverride": { "typopro": { "fonts": "web/TypoPRO-Raleway/*" } } (…) }
Install grunt
$ npm install -g grunt-cli $ npm install --save-dev grunt $ npm install --save-dev grunt-bower-task
and create Gruntfile.js :
module.exports = function(grunt) { var path = require('path'); grunt.initConfig({ bower: { install: { options: { targetDir: 'vendor', cleanTargetDir: true, layout: function(type, component, source) { return type; } } } } });
The grunt bower:install task will run bower install and copy all the files from web/TypoPRO-Raleway to vendor/fonts ( vendor from targetDir to Gruntfile.js and fonts from exportsOverride to bower.json ). You can complete the task with
$ grunt bower:install
Since bower:install registered as the default job, you can also use the abbreviation:
$ grunt
source share