+++ /dev/null
-This directory and the files immediately inside it are automatically generated
-when you change this package's NPM dependencies. Commit the files in this
-directory (npm-shrinkwrap.json, .gitignore, and this README) to source control
-so that others run the same versions of sub-dependencies.
-
-You should NOT check in the node_modules directory that Meteor automatically
-creates; if you are using git, the .gitignore file tells git to ignore it.
Package.describe({
name: 'zurb:foundation-sites',
summary: 'Foundation 6 - The most advanced responsive front-end framework in the world.',
- version: '6.2.0',
+ version: '6.2.0_1',
git: 'https://github.com/zurb/foundation-sites.git',
documentation: 'meteor-README.md'
});
-Npm.depends({
- 'motion-ui': '1.1.0'
-});
-
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.imply('fourseven:scss@3.4.1');
api.use(['ecmascript', 'jquery', 'fourseven:scss@3.4.1'], 'client');
- api.addFiles('.npm/package/node_modules/motion-ui/dist/motion-ui.css', 'client');
- api.addFiles('.npm/package/node_modules/motion-ui/dist/motion-ui.js', 'client');
api.addFiles('dist/foundation.js', 'client');
api.addFiles([
'scss/components/_dropdown-menu.scss',
'scss/components/_dropdown.scss',
'scss/components/_flex-video.scss',
+ 'scss/components/_flex.scss',
'scss/components/_float.scss',
'scss/components/_label.scss',
'scss/components/_media-object.scss',
+ 'scss/components/_menu-icon.scss',
'scss/components/_menu.scss',
'scss/components/_off-canvas.scss',
'scss/components/_orbit.scss',
'scss/forms/_help-text.scss',
'scss/forms/_input-group.scss',
'scss/forms/_label.scss',
+ 'scss/forms/_meter.scss',
+ 'scss/forms/_progress.scss',
+ 'scss/forms/_range.scss',
'scss/forms/_select.scss',
'scss/forms/_text.scss',
'scss/util/_breakpoint.scss',
'scss/util/_color.scss',
+ 'scss/util/_flex.scss',
'scss/util/_mixins.scss',
'scss/util/_selector.scss',
'scss/util/_unit.scss',
'scss/util/_util.scss',
'scss/util/_value.scss'
-
+
], 'client', {isImport: true});
});