diff --git a/.gitignore b/.gitignore index d2770c9..1fd18f8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /bower_components/ node_modules/ -*.log \ No newline at end of file +*.log +.idea diff --git a/.versions b/.versions new file mode 100644 index 0000000..93f58eb --- /dev/null +++ b/.versions @@ -0,0 +1,28 @@ +angularjs:angular@1.3.14 +application-configuration@1.0.4 +base64@1.0.2 +binary-heap@1.0.2 +callback-hook@1.0.2 +check@1.0.4 +davidyaha:adaptive-detection@0.4.1 +dburles:mongo-collection-instances@0.3.3 +ddp@1.0.14 +ejson@1.0.5 +follower-livedata@1.0.3 +geojson-utils@1.0.2 +id-map@1.0.2 +json@1.0.2 +lai:collection-extensions@0.1.3 +local-test:davidyaha:adaptive-detection@0.4.1 +logging@1.0.6 +meteor@1.1.4 +minimongo@1.0.6 +mongo@1.0.11 +observe-sequence@1.0.4 +ordered-dict@1.0.2 +random@1.0.2 +retry@1.0.2 +tinytest@1.0.4 +tracker@1.0.5 +underscore@1.0.2 +urigo:angular@0.7.2 diff --git a/package.js b/package.js new file mode 100644 index 0000000..1f0dee9 --- /dev/null +++ b/package.js @@ -0,0 +1,22 @@ +/** + * Created by David Yahalomi on 3/9/15. + */ +Package.describe({ + summary: "This module allows you to detect device.", + version: "0.4.1", + git: "https://github.com/netanelgilad/meteor-textAngular.git", + name: "angular-adaptive:adaptive-detection" +}); + +Package.onUse(function(api) { + api.versionsFrom('METEOR@0.9.0.1'); + api.use('urigo:angular@0.7.2', 'client'); + + api.addFiles('angular-adaptive-detection.min.js', 'client'); +}); + +Package.onTest(function(api) { + api.use('tinytest'); + api.use('angular-adaptive:adaptive-detection', 'client'); + //api.addFiles('angular-adaptive:adaptive-detection-tests.js', 'client'); +});