]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
zf 6.2 - meteor package adjustments 8290/head
authorJulian Ćwirko <julian.cwirko@gmail.com>
Mon, 29 Feb 2016 17:38:36 +0000 (18:38 +0100)
committerJulian Ćwirko <julian.cwirko@gmail.com>
Mon, 29 Feb 2016 17:38:36 +0000 (18:38 +0100)
.npm/package/.gitignore [deleted file]
.npm/package/README [deleted file]
.npm/package/npm-shrinkwrap.json [deleted file]
package.js

diff --git a/.npm/package/.gitignore b/.npm/package/.gitignore
deleted file mode 100644 (file)
index 3c3629e..0000000
+++ /dev/null
@@ -1 +0,0 @@
-node_modules
diff --git a/.npm/package/README b/.npm/package/README
deleted file mode 100644 (file)
index 3d49255..0000000
+++ /dev/null
@@ -1,7 +0,0 @@
-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.
diff --git a/.npm/package/npm-shrinkwrap.json b/.npm/package/npm-shrinkwrap.json
deleted file mode 100644 (file)
index 49664cf..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-{
-  "dependencies": {
-    "motion-ui": {
-      "version": "1.1.0",
-      "dependencies": {
-        "jquery": {
-          "version": "2.1.4"
-        }
-      }
-    }
-  }
-}
index 18f980b4894f69bb8ce2fdfe7cb4318dc90a7bdb..94f3e84e1e47e15b9edbd9b03d5fb5b360b3e8aa 100644 (file)
@@ -1,21 +1,15 @@
 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([
 
@@ -35,9 +29,11 @@ Package.onUse(function(api) {
     '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',
@@ -62,6 +58,9 @@ Package.onUse(function(api) {
     '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',
 
@@ -83,11 +82,12 @@ Package.onUse(function(api) {
 
     '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});
 });