├── .versions ├── package.js └── README.md /.versions: -------------------------------------------------------------------------------- 1 | angular:angular@1.4.6 2 | angular:angular-animate@1.4.6 3 | angular:angular-sanitize@1.4.6 4 | angularui:angular-ui-router@0.2.15 5 | driftyco:ionic@1.1.0_2 6 | meteor@1.1.6 7 | underscore@1.0.3 8 | urigo:cancel-fastclick@0.0.2 9 | urigo:ionic@1.1.0_2 10 | -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | name: "urigo:ionic", 3 | summary: "Deprecated: use the official `driftyco:ionic` package instead!", 4 | version: "1.1.0_2", 5 | git: 'https://github.com/Urigo/meteor-ionic.git' 6 | }); 7 | 8 | Package.on_use(function (api) { 9 | api.imply("driftyco:ionic@1.1.0_2"); 10 | }); -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Meteor-Ionic - The official [Ionic Framework](http://ionicframework.com/) bundled to Meteor 2 | 3 | ## Deprecated: Merged into the official `driftyco:ionic` package with this pull reuqest - https://github.com/driftyco/ionic/pull/3133 4 | 5 | ## Tutorials 6 | 7 | - With Meteor build process: https://twitter.com/meteorjs/status/655066914897723392 8 | - With the Ionic CLI: https://twitter.com/Ionicframework/status/655066658508247040 9 | --------------------------------------------------------------------------------