Skip to content

Commit

Permalink
🚒 v3.2.1
Browse files Browse the repository at this point in the history
- πŸ‘· Maintenance release;
- πŸ“¦ Update `ostrio:flow-router-extra` dependency to `v3.7.4`;
- πŸ“¦ Internal meteor package dependencies update;
- 🀝 Compatibility with `[email protected].*`;
- πŸ‘¨β€πŸ’» Overall codebase enhancements;
- πŸ‘¨β€πŸ”¬ Test-suite minor update.
  • Loading branch information
dr-dimitru committed Mar 2, 2020
1 parent 72ba2f3 commit e79586b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
32 changes: 16 additions & 16 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
[email protected]
babel-compiler@7.3.4
babel-runtime@1.3.0
[email protected].11
babel-compiler@7.5.2
babel-runtime@1.5.0
[email protected].12
[email protected]
[email protected]
callback-hook@1.1.0
callback-hook@1.3.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
ecmascript@0.12.4
ecmascript@0.14.2
[email protected]
ecmascript-runtime-client@0.8.0
ecmascript-runtime-server@0.7.1
[email protected].0
ecmascript-runtime-client@0.10.0
ecmascript-runtime-server@0.9.0
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
local-test:ostrio:[email protected].0
local-test:ostrio:[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
modules@0.13.0
modules-runtime@0.10.3
mongo@1.6.2
modules@0.15.0
modules-runtime@0.12.0
mongo@1.8.0
[email protected]
[email protected]
[email protected]
npm-mongo@3.1.2
npm-mongo@3.3.0
[email protected]
ostrio:[email protected].0
ostrio:[email protected].0
ostrio:[email protected].4
ostrio:[email protected].1
[email protected]
[email protected]
[email protected]
Expand All @@ -48,5 +48,5 @@ [email protected]
[email protected]
[email protected]
[email protected]
webapp@1.7.3
webapp@1.8.0
[email protected]
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

Change `document.title` on the fly within [flow-router-extra](https://github.com/VeliovGroup/flow-router).

Features:
## Features:

- πŸ‘·β€β™‚οΈ 100% tests coverage;
- πŸ‘¨β€πŸ”¬ __100% tests coverage__;
- πŸŽ› Per route, per group, and default (*all routes*) `title` tag.

Various ways to set `title`, ordered by prioritization:
Expand Down
8 changes: 4 additions & 4 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Package.describe({
name: 'ostrio:flow-router-title',
version: '3.2.0',
version: '3.2.1',
summary: 'Change document.title (page title) on the fly within flow-router',
git: 'https://github.com/VeliovGroup/Meteor-flow-router-title',
documentation: 'README.md'
});

Package.onUse(function (api) {
Package.onUse((api) => {
api.versionsFrom('1.4');
api.use(['ecmascript', 'reactive-var', 'tracker'], 'client');
api.mainModule('flow-router-title.js', 'client');
});

Package.onTest(function(api) {
api.use(['tinytest', 'ecmascript', 'random', 'session', 'reactive-var', 'tracker', 'ostrio:[email protected].0', 'ostrio:flow-router-title'], 'client');
Package.onTest((api) => {
api.use(['tinytest', 'ecmascript', 'random', 'session', 'reactive-var', 'tracker', 'ostrio:[email protected].4'], 'client');
api.addFiles('tests/init.js', 'client');
api.addFiles('tests/common.js', 'client');
api.addFiles('tests/group.js', 'client');
Expand Down
2 changes: 1 addition & 1 deletion tests/init.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
import { FlowRouterTitle } from 'meteor/ostrio:flow-router-title';
import { FlowRouterTitle } from '../flow-router-title.js';
const titleHandler = new FlowRouterTitle(FlowRouter);

export { titleHandler };

0 comments on commit e79586b

Please sign in to comment.