Skip to content

Commit

Permalink
v3.0.1
Browse files Browse the repository at this point in the history
 - Overall code linting
 - Compatibility with `[email protected]`
 - Dependencies update
  • Loading branch information
dr-dimitru committed Apr 14, 2017
1 parent ab90778 commit 374195b
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 18 deletions.
31 changes: 15 additions & 16 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,56 +1,55 @@
[email protected]
babel-compiler@6.14.1
babel-compiler@6.18.1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].9
[email protected].10
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].3
[email protected].4
[email protected]
[email protected].13
[email protected].14
[email protected]
[email protected]
ecmascript@0.6.3
ecmascript@0.7.2
[email protected]
[email protected]
[email protected]
[email protected].10
[email protected].10
[email protected].11
[email protected].11
[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.7.9
[email protected].9
modules@0.8.1
[email protected].10
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
ostrio:flow-router-extra@3.0.0
ostrio:[email protected].0
ostrio:flow-router-extra@3.1.0
ostrio:[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
spacebars-compiler@1.0.12
spacebars-compiler@1.1.0
[email protected]
templating-tools@1.0.4
templating-tools@1.1.1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].14
[email protected].15
[email protected]
3 changes: 3 additions & 0 deletions flow-router-title.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { _ } from 'meteor/underscore';
import { ReactiveVar } from 'meteor/reactive-var';

export class FlowRouterTitle {
constructor(router) {
const _self = this;
Expand Down
4 changes: 2 additions & 2 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package.describe({
name: 'ostrio:flow-router-title',
version: '3.0.0',
version: '3.0.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) {
api.versionsFrom('[email protected]');
api.use(['underscore', 'ecmascript', 'reactive-var', 'ostrio:flow-router-extra@3.0.0'], 'client');
api.use(['underscore', 'ecmascript', 'reactive-var', 'ostrio:flow-router-extra@3.1.0'], 'client');
api.mainModule('flow-router-title.js', 'client');
});

Expand Down

0 comments on commit 374195b

Please sign in to comment.