Skip to content

Commit 4181d3b

Browse files
committed
s 1.2.4
1 parent 669a689 commit 4181d3b

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Install synthesis
3636

3737
```sh
3838
meteor add mwc:synthesis #compiles html files
39+
# synthesis-file is optional. If you want to handle relative file paths.
3940
meteor add mwc:synthesis-file #compiles asset files for <img src="image.png"> to work.
4041
```
4142

@@ -47,6 +48,7 @@ You can optionally use these packages from meteorwebcomponents
4748
* [mwc:router](https://github.com/meteorwebcomponents/router) - Flowrouter with polymer.
4849
* [mwc:layout](https://github.com/meteorwebcomponents/layout) - Polymer layout renderer.
4950

51+
5052
## Usage
5153

5254
### Polymer Settings
@@ -305,4 +307,5 @@ But there are some compatibility issues https://forums.meteor.com/t/polymer-mete
305307

306308
Q: I love blaze's template level subscriptions and spacebars. I dont want to lose these features when I port my app to polymer. Any help?
307309

308-
Ans : In my experience I find nothing that polymer cannot do which blaze can. Polymer is very easy to learn and while porting your app you'll find yourself copy pasting most of your code. For every blaze function they have solutions in polymer. We have got you covered when it comed to meteor data and subscriptions (including template level subs) Refer [mixin](https://github.com/meteorwebcomponents/mixin) .
310+
Ans : In my experience I find nothing that polymer cannot do which blaze can. Polymer is very easy to learn and while porting your app you'll find yourself copy pasting most of your code. For every blaze function they have solutions in polymer. We have got you covered when it comes to meteor data and subscriptions (including template level subs) Refer [mixin](https://github.com/meteorwebcomponents/mixin) .
311+

packages/synthesis-jade/.versions

Lines changed: 2 additions & 3 deletions

packages/synthesis/.versions

Lines changed: 2 additions & 3 deletions

packages/synthesis/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ Install synthesis
3636

3737
```sh
3838
meteor add mwc:synthesis #compiles html files
39+
# synthesis-file is optional. If you want to handle relative file paths.
3940
meteor add mwc:synthesis-file #compiles asset files for <img src="image.png"> to work.
4041
```
4142

@@ -47,6 +48,7 @@ You can optionally use these packages from meteorwebcomponents
4748
* [mwc:router](https://github.com/meteorwebcomponents/router) - Flowrouter with polymer.
4849
* [mwc:layout](https://github.com/meteorwebcomponents/layout) - Polymer layout renderer.
4950

51+
5052
## Usage
5153

5254
### Polymer Settings
@@ -305,4 +307,4 @@ But there are some compatibility issues https://forums.meteor.com/t/polymer-mete
305307

306308
Q: I love blaze's template level subscriptions and spacebars. I dont want to lose these features when I port my app to polymer. Any help?
307309

308-
Ans : In my experience I find nothing that polymer cannot do which blaze can. Polymer is very easy to learn and while porting your app you'll find yourself copy pasting most of your code. For every blaze function they have solutions in polymer. We have got you covered when it comed to meteor data and subscriptions (including template level subs) Refer [mixin](https://github.com/meteorwebcomponents/mixin) .
310+
Ans : In my experience I find nothing that polymer cannot do which blaze can. Polymer is very easy to learn and while porting your app you'll find yourself copy pasting most of your code. For every blaze function they have solutions in polymer. We have got you covered when it comes to meteor data and subscriptions (including template level subs) Refer [mixin](https://github.com/meteorwebcomponents/mixin) .

packages/synthesis/package.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
name: 'mwc:synthesis',
3-
version: '1.2.3',
3+
version: '1.2.4',
44
summary: 'Synthesis is meteor + polymer',
55
git: 'https://github.com/meteorwebcomponents/synthesis',
66
documentation: 'README.md',
@@ -9,7 +9,6 @@ Package.describe({
99
Package.onUse((api) => {
1010
api.versionsFrom('1.3');
1111
api.use('ecmascript');
12-
api.use('mwc:[email protected]');
1312
api.use('isobuild:[email protected]');
1413
api.addFiles('synthesis-client.js', 'client');
1514
api.export('Synthesis', ['client']);

0 commit comments

Comments
 (0)