Skip to content
This repository has been archived by the owner on Jan 22, 2018. It is now read-only.

Commit

Permalink
Merge branch 'release/v0.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Kisiela committed Nov 10, 2015
2 parents 9a87657 + 56b4b13 commit a72b1fb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 17 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ There is no official Angular Formly package in Atmosphere so you have to add it
## Install

```
meteor add mys:angular-formly-templates-material
meteor add wieldo:angular-formly-templates-material
```


Expand Down
2 changes: 1 addition & 1 deletion lib/client/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function formlyMaterial() {
var self = this;

this.templateUrl = function (templateUrl) {
return 'mys_angular-formly-templates-material_' + templateUrl.replace(/^\//, "");
return '/packages/wieldo:angular-formly-templates-material/' + templateUrl.replace(/^\//, "");
};

this.$get = function () {
Expand Down
35 changes: 20 additions & 15 deletions package.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,33 +3,38 @@ var client = 'client';
var server = 'server';

Package.describe({
name: "mys:angular-formly-templates-material",
name: "wieldo:angular-formly-templates-material",
summary: "Material design templates for angular-formly",
version: "0.0.2",

documentation: 'README.md',
git: 'https://github.com/kamilkisiela/meteor-angular-formly-templates-material.git'
git: 'https://github.com/wieldo/angular-formly-templates-material.git'
});

Package.onUse(function (api) {

var packages = [
'[email protected]',
'[email protected]',
'[email protected]',
'[email protected]',
'angular:[email protected]',
'angular:[email protected]',
'angular:[email protected]',
'pbastowski:[email protected]',
'pbastowski:[email protected]'
];
var packages = {
use: [
'[email protected]',
'[email protected]',
'[email protected]',
'pbastowski:[email protected]',
'pbastowski:[email protected]',
'wieldo:[email protected]'
],
imply: [
'angular:[email protected]',
'angular:[email protected]',
'angular:[email protected]',
'wieldo:[email protected]'
]
};

api.versionsFrom("[email protected]");

api.use(packages);
api.use(packages.use);

api.imply(packages);
api.imply(packages.imply);

api.addFiles([
'lib/client/main.js',
Expand Down

0 comments on commit a72b1fb

Please sign in to comment.