Skip to content

Commit a739b47

Browse files
committed
v3.5.1
- πŸ‘¨β€πŸ’» Implement #52 , - pass options to `page.js` NPM module, see [updated docs]() , thanks to @macrozone - πŸ“„ Add [docs for usage with React.js](https://github.com/VeliovGroup/flow-router/blob/master/docs/re act.md), closing #19 and #40 , thanks to @macrozone - πŸ“„ Added tutorial for [auto-scroll](https://github.com/VeliovGroup/flow-router/blob/master/doc s/auto-scroll.md), closing #9 - πŸ“„ Added 2 new related packages: - πŸ“¦ [krishaamer:flow-router-breadcrumb](https://github.com/krishaamer/flow-r outer-breadcrumb) - Easy way to add a breadcrumb with enough flexibility to your project (`flow-router-extra` edition) - πŸ“¦ [nicolaslopezj:router-layer](https://github.com/krishaamer/body-class) - Easily scope CSS by automatically adding the current template and layout names as classes on the body element - πŸ“¦ Update `qs` NPM lib to `v6.5.2` - πŸ‘·β€β™‚οΈ Active-route and other helpers refactoring - πŸ— Minor overall codebase enhancement & linting - πŸ“¦ Internal Atmosphere dependencies update + compatibility with `[email protected]`
1 parent 8344d08 commit a739b47

File tree

3 files changed

+36
-35
lines changed

3 files changed

+36
-35
lines changed

β€Ž.npm/package/npm-shrinkwrap.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ž.versions

+30-29
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,63 @@
11
22
3-
babel-compiler@7.0.6
4-
5-
3+
babel-compiler@7.1.1
4+
5+
66
7-
boilerplate-generator@1.4.0
7+
boilerplate-generator@1.5.0
88
9-
9+
1010
1111
12-
12+
1313
1414
15-
ddp-server@2.1.2
15+
ddp-server@2.2.0
1616
1717
18-
dynamic-import@0.3.0
19-
ecmascript@0.10.6
20-
ecmascript-runtime@0.5.0
21-
ecmascript-runtime-client@0.6.0
22-
ecmascript-runtime-server@0.5.0
18+
dynamic-import@0.4.0
19+
ecmascript@0.11.1
20+
ecmascript-runtime@0.7.0
21+
ecmascript-runtime-client@0.7.1
22+
ecmascript-runtime-server@0.7.0
2323
2424
25-
25+
2626
2727
2828
29-
local-test:ostrio:[email protected].0
29+
local-test:ostrio:[email protected].1
3030
31-
32-
meteor@1.8.2
31+
32+
meteor@1.9.0
3333
meteorhacks:[email protected]
3434
meteorhacks:[email protected]
35-
36-
37-
38-
35+
36+
37+
38+
39+
3940
40-
41-
npm-mongo@2.2.33
41+
42+
npm-mongo@3.0.7
4243
43-
44-
promise@0.10.1
44+
45+
promise@0.11.1
4546
46-
47+
4748
4849
4950
5051
51-
52+
5253
53-
socket-stream-client@0.1.0
54+
socket-stream-client@0.2.1
5455
staringatlights:[email protected]
5556
staringatlights:[email protected]
5657
5758
58-
tracker@1.1.3
59+
tracker@1.2.0
5960
6061
61-
webapp@1.5.0
62+
webapp@1.6.0
6263

β€Žpackage.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package.describe({
22
name: 'ostrio:flow-router-extra',
33
summary: 'Carefully extended flow-router with waitOn and template context',
4-
version: '3.5.0',
4+
version: '3.5.1',
55
git: 'https://github.com/VeliovGroup/flow-router'
66
});
77

@@ -18,7 +18,7 @@ Package.onUse(function (api) {
1818
'reactive-var',
1919
'ejson'
2020
], ['client', 'server']);
21-
21+
2222
api.use(['templating', 'blaze'], 'client', { weak: true });
2323
api.mainModule('client/_init.js', 'client');
2424
api.mainModule('server/_init.js', 'server');
@@ -52,5 +52,5 @@ Package.onTest(function(api) {
5252

5353
Npm.depends({
5454
'page': '1.8.6',
55-
'qs': '6.5.1'
55+
'qs': '6.5.2'
5656
});

0 commit comments

Comments
Β (0)