updated meteor notes in readme

This commit is contained in:
Kevin Ross 2016-02-03 14:56:31 -06:00
parent 1512572291
commit 92edf78d8c
3 changed files with 50 additions and 66 deletions

View File

@ -1,27 +1,49 @@
application-configuration@1.0.4 babel-compiler@5.8.24_1
base64@1.0.2 babel-runtime@0.1.4
binary-heap@1.0.2 base64@1.0.4
callback-hook@1.0.2 binary-heap@1.0.4
check@1.0.4 blaze@2.1.3
ddp@1.0.14 blaze-tools@1.0.4
ejson@1.0.5 boilerplate-generator@1.0.4
fezvrasta:bootstrap-material-design@0.3.0-dev callback-hook@1.0.4
follower-livedata@1.0.3 check@1.1.0
geojson-utils@1.0.2 ddp@1.2.2
http@1.0.10 ddp-client@1.2.1
id-map@1.0.2 ddp-common@1.2.2
jquery@1.11.3 ddp-server@1.2.2
json@1.0.2 deps@1.0.9
local-test:fezvrasta:bootstrap-material-design@0.3.0-dev diff-sequence@1.0.1
logging@1.0.6 ecmascript@0.1.6
meteor@1.1.4 ecmascript-runtime@0.2.6
minimongo@1.0.6 ejson@1.0.7
mongo@1.0.11 fezvrasta:bootstrap-material-design@0.5.8
ordered-dict@1.0.2 geojson-utils@1.0.4
random@1.0.2 html-tools@1.0.5
retry@1.0.2 htmljs@1.0.5
tinytest@1.0.4 http@1.1.1
tracker@1.0.5 id-map@1.0.4
twbs:bootstrap@3.3.1 jquery@1.11.4
underscore@1.0.2 local-test:fezvrasta:bootstrap-material-design@0.5.8
url@1.0.3 logging@1.0.8
meteor@1.1.10
minimongo@1.0.10
mongo@1.1.3
mongo-id@1.0.1
npm-mongo@1.4.39_1
observe-sequence@1.0.7
ordered-dict@1.0.4
promise@0.5.1
random@1.0.5
reactive-var@1.0.6
retry@1.0.4
routepolicy@1.0.6
spacebars@1.0.7
spacebars-compiler@1.0.7
tinytest@1.0.6
tracker@1.0.9
twbs:bootstrap@3.3.6
ui@1.0.8
underscore@1.0.4
url@1.0.5
webapp@1.2.3
webapp-hashing@1.0.5

View File

@ -28,7 +28,7 @@ Major differences:
## How to install ## How to install
You may install this theme using Bower or [Meteor (package requires community help to be updated #769)](https://github.com/FezVrasta/bootstrap-material-design/issues/769): You may install this theme using Bower or Meteor:
- Bower : `bower install bootstrap-material-design` - Bower : `bower install bootstrap-material-design`
- Meteor: `meteor add fezvrasta:bootstrap-material-design` - Meteor: `meteor add fezvrasta:bootstrap-material-design`

View File

@ -1,38 +0,0 @@
// 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.
var packageJson = JSON.parse(Npm.require("fs").readFileSync('package.json'));
Package.describe({
name: packageName,
summary: 'FezVrasta\'s Bootstrap theme implementing Google\'s Material (Paper) Design',
version: packageJson.version,
git: 'https://github.com/fezvrasta/bootstrap-material-design.git'
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@1.2');
api.use('twbs:bootstrap@3.3.6');
api.use('jquery');
api.addFiles([
'dist/css/bootstrap-material-design.css',
'dist/css/ripples.css',
'dist/js/material.js',
'dist/js/ripples.js',
'meteor/init.js'
], where);
});
Package.onTest(function (api) {
api.use(packageName, where);
api.use(['tinytest', 'http'], where);
api.addFiles('meteor/test.js', where);
});