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

Commit a72b1fb

Browse files
author
Kamil Kisiela
committed
Merge branch 'release/v0.0.2'
2 parents 9a87657 + 56b4b13 commit a72b1fb

File tree

3 files changed

+22
-17
lines changed

3 files changed

+22
-17
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ There is no official Angular Formly package in Atmosphere so you have to add it
1010
## Install
1111

1212
```
13-
meteor add mys:angular-formly-templates-material
13+
meteor add wieldo:angular-formly-templates-material
1414
```
1515

1616

lib/client/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function formlyMaterial() {
1111
var self = this;
1212

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

1717
this.$get = function () {

package.js

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,33 +3,38 @@ var client = 'client';
33
var server = 'server';
44

55
Package.describe({
6-
name: "mys:angular-formly-templates-material",
6+
name: "wieldo:angular-formly-templates-material",
77
summary: "Material design templates for angular-formly",
88
version: "0.0.2",
99

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

1414
Package.onUse(function (api) {
1515

16-
var packages = [
17-
18-
19-
20-
21-
'angular:[email protected]',
22-
'angular:[email protected]',
23-
'angular:[email protected]',
24-
'pbastowski:[email protected]',
25-
'pbastowski:[email protected]'
26-
];
16+
var packages = {
17+
use: [
18+
19+
20+
21+
'pbastowski:[email protected]',
22+
'pbastowski:[email protected]',
23+
24+
],
25+
imply: [
26+
'angular:[email protected]',
27+
'angular:[email protected]',
28+
'angular:[email protected]',
29+
30+
]
31+
};
2732

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

30-
api.use(packages);
35+
api.use(packages.use);
3136

32-
api.imply(packages);
37+
api.imply(packages.imply);
3338

3439
api.addFiles([
3540
'lib/client/main.js',

0 commit comments

Comments
 (0)