mirror of
https://github.com/itflow-org/itflow
synced 2026-09-23 23:21:16 +00:00
Fixed up client files can now download and delete files, added web link to client logins added payments, quotes and recurring to client print and lots of little ui cleanups here and there
This commit is contained in:
27
vendor/moment/meteor/package.js
vendored
Normal file
27
vendor/moment/meteor/package.js
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
// package metadata file for Meteor.js
|
||||
'use strict';
|
||||
|
||||
var packageName = 'momentjs:moment'; // https://atmospherejs.com/momentjs/moment
|
||||
|
||||
Package.describe({
|
||||
name: packageName,
|
||||
summary: 'Moment.js (official): parse, validate, manipulate, and display dates - official Meteor packaging',
|
||||
version: '2.24.0',
|
||||
git: 'https://github.com/moment/moment.git'
|
||||
});
|
||||
|
||||
Package.onUse(function (api) {
|
||||
api.versionsFrom(['METEOR@0.9.0', 'METEOR@1.0', 'METEOR@1.2']);
|
||||
api.export('moment');
|
||||
api.addFiles([
|
||||
'moment.js',
|
||||
'export.js'
|
||||
]);
|
||||
});
|
||||
|
||||
Package.onTest(function (api) {
|
||||
api.use(packageName);
|
||||
api.use('tinytest');
|
||||
|
||||
api.addFiles('test.js');
|
||||
});
|
||||
Reference in New Issue
Block a user