Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2015-04-28 10:15:32 +0300
committerXhmikosR <xhmikosr@gmail.com>2015-04-28 11:03:37 +0300
commitfae8c5d0dc1814ef01c607d3a6551eb286e62f0d (patch)
treeca674c521081f75d3d7931f93dd41eafedf73bbf
parent3e7ca3bbc8eaa60013d4ab9f2edd42f6dcd8dd4b (diff)
Add package.js in Grunt tasks.
-rw-r--r--Gruntfile.js2
-rw-r--r--package.js3
2 files changed, 4 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index ce218828e0..f6cae30e31 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -63,7 +63,7 @@ module.exports = function (grunt) {
options: {
jshintrc: 'grunt/.jshintrc'
},
- src: ['Gruntfile.js', 'grunt/*.js']
+ src: ['Gruntfile.js', 'package.js', 'grunt/*.js']
},
core: {
src: 'js/*.js'
diff --git a/package.js b/package.js
index 2ec041b3a0..48de34127a 100644
--- a/package.js
+++ b/package.js
@@ -1,5 +1,8 @@
// package metadata file for Meteor.js
+/* jshint strict:false */
+/* global Package:true */
+
Package.describe({
name: 'twbs:bootstrap', // http://atmospherejs.com/twbs/bootstrap
summary: 'The most popular front-end framework for developing responsive, mobile first projects on the web.',