-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#769 updated some meteor packages, still not working
- Loading branch information
Showing
7 changed files
with
47 additions
and
239 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,17 +15,10 @@ Package.describe({ | |
|
||
Package.onUse(function (api) { | ||
api.versionsFrom('[email protected]'); | ||
api.use('twbs:[email protected].1'); | ||
api.use('twbs:[email protected].6'); | ||
api.use('jquery'); | ||
api.addAssets([ | ||
// we bundle all font files, but the client will request only one of them via the CSS @font-face rule | ||
'dist/fonts/Material-Design-Icons.eot', // IE8 or older | ||
'dist/fonts/Material-Design-Icons.svg', // SVG fallback for iOS < 5 - http://caniuse.com/#feat=svg-fonts, http://stackoverflow.com/a/11002874/126903 | ||
'dist/fonts/Material-Design-Icons.ttf', // Android Browers 4.1, 4.3 - http://caniuse.com/#feat=ttf | ||
'dist/fonts/Material-Design-Icons.woff', // Supported by all modern browsers | ||
], where); | ||
api.addFiles([ | ||
'dist/css/material.css', | ||
'dist/css/bootstrap-material-design.css', | ||
'dist/css/ripples.css', | ||
'dist/js/material.js', | ||
'dist/js/ripples.js', | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
// package metadata file for Meteor.js | ||
|
||
/* jshint strict:false */ | ||
/* global Package:true */ | ||
/* global Npm:true */ | ||
'use strict'; | ||
|
||
var packageName = 'fezvrasta:bootstrap-material-design'; // https://atmospherejs.com/fezvrasta/bootstrap-material-design | ||
var where = 'client'; // where to install: 'client' or 'server'. For both, pass nothing. | ||
|
@@ -18,17 +15,10 @@ Package.describe({ | |
|
||
Package.onUse(function (api) { | ||
api.versionsFrom('[email protected]'); | ||
api.use('twbs:[email protected].1'); | ||
api.use('twbs:[email protected].6'); | ||
api.use('jquery'); | ||
api.addAssets([ | ||
// we bundle all font files, but the client will request only one of them via the CSS @font-face rule | ||
'dist/fonts/Material-Design-Icons.eot', // IE8 or older | ||
'dist/fonts/Material-Design-Icons.svg', // SVG fallback for iOS < 5 - http://caniuse.com/#feat=svg-fonts, http://stackoverflow.com/a/11002874/126903 | ||
'dist/fonts/Material-Design-Icons.ttf', // Android Browers 4.1, 4.3 - http://caniuse.com/#feat=ttf | ||
'dist/fonts/Material-Design-Icons.woff', // Supported by all modern browsers | ||
], where); | ||
api.addFiles([ | ||
'dist/css/material.css', | ||
'dist/css/bootstrap-material-design.css', | ||
'dist/css/ripples.css', | ||
'dist/js/material.js', | ||
'dist/js/ripples.js', | ||
|