Lots of updates
This commit is contained in:
parent
e3cfff8310
commit
39e7af6238
454 changed files with 221168 additions and 36622 deletions
app/bower_components/geolib/meteor
30
app/bower_components/geolib/meteor/package.js
vendored
Normal file
30
app/bower_components/geolib/meteor/package.js
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
// package metadata file for Meteor.js
|
||||
'use strict';
|
||||
|
||||
var packageName = 'outatime:geolib'; // https://atmospherejs.com/outatime/geolib
|
||||
|
||||
var packageJson = JSON.parse(Npm.require("fs").readFileSync('package.json'));
|
||||
|
||||
Package.describe({
|
||||
name: packageName,
|
||||
summary: 'Geolib - Library to perform geo specific tasks',
|
||||
version: packageJson.version,
|
||||
documentation: 'meteor/README.md',
|
||||
git: 'https://github.com/manuelbieh/geolib.git'
|
||||
});
|
||||
|
||||
Package.onUse(function (api) {
|
||||
api.versionsFrom(['METEOR@0.9.0', 'METEOR@1.0']);
|
||||
api.export('geolib');
|
||||
api.addFiles([
|
||||
'dist/geolib.js',
|
||||
'meteor/export.js'
|
||||
]);
|
||||
});
|
||||
|
||||
Package.onTest(function (api) {
|
||||
api.use(packageName);
|
||||
api.use('tinytest');
|
||||
|
||||
api.addFiles('meteor/test.js');
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue