mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
ac37625123
This reverts commit 162fd8e9b8
.
27 lines
851 B
JavaScript
27 lines
851 B
JavaScript
// package metadata file for Meteor.js
|
|
|
|
/* jshint strict:false */
|
|
/* global Package:true */
|
|
/* global Npm:true */
|
|
|
|
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: 'Bootstrap Material 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@4.0.0-alpha');
|
|
api.use('jquery', 'client');
|
|
api.addFiles([
|
|
'dist/css/bootstrap-material-design.css',
|
|
'dist/js/bootstrap-material-design.js'
|
|
], where);
|
|
});
|