fix path to jsnext, update dependencies

This commit is contained in:
Kevin Ross 2016-05-03 10:23:40 -05:00
parent 14a3595909
commit 06bf55ac47
3 changed files with 4 additions and 31 deletions

View File

@ -23,7 +23,6 @@ before_install:
- rvm use 2.2 --fuzzy - rvm use 2.2 --fuzzy
- gem install scss-lint - gem install scss-lint
before_script: before_script:
- npm install -g gulpjs/gulp-cli#4.0 - npm install -g gulpjs/gulp-cli#4.0

View File

@ -1,26 +0,0 @@
// 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);
});

View File

@ -23,7 +23,7 @@
"style": "dist/css/bootstrap-material-design.css", "style": "dist/css/bootstrap-material-design.css",
"sass": "scss/_core.scss", "sass": "scss/_core.scss",
"main": "dist/bootstrap-material-design.umd.js", "main": "dist/bootstrap-material-design.umd.js",
"jsnext:main": "js/src/index.js", "jsnext:main": "js/index.js",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/FezVrasta/bootstrap-material-design.git" "url": "https://github.com/FezVrasta/bootstrap-material-design.git"
@ -33,18 +33,18 @@
}, },
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"babel-polyfill": "^6.7.4", "babel-polyfill": "^6.8.0",
"bootstrap": "twbs/bootstrap#v4-dev", "bootstrap": "twbs/bootstrap#v4-dev",
"extend": "^3.0.0", "extend": "^3.0.0",
"jquery": "^2.2", "jquery": "^2.2",
"tether": "^1.3.2" "tether": "^1.3.2"
}, },
"devDependencies": { "devDependencies": {
"babel-core": "^6.7.7", "babel-core": "^6.8.0",
"babel-eslint": ">=6.0.4", "babel-eslint": ">=6.0.4",
"babel-preset-es2015": "^6.6.0", "babel-preset-es2015": "^6.6.0",
"gulp": "github:gulpjs/gulp#4.0", "gulp": "github:gulpjs/gulp#4.0",
"gulp-pipeline": "^4.0.37", "gulp-pipeline": "^4.0.40",
"moment": "^2.13.0" "moment": "^2.13.0"
}, },
"engines": { "engines": {