-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated to Meteor 1.4.3.1 + dependencies, also made a few changes to …
…file names
- Loading branch information
Showing
16 changed files
with
73 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,21 +6,21 @@ | |
|
||
[email protected] # Packages every Meteor app needs to have | ||
[email protected] # Packages for a great mobile UX | ||
[email protected].14 # The database Meteor supports right now | ||
[email protected].15 # The database Meteor supports right now | ||
[email protected] # Compile .html files into Meteor Blaze views | ||
[email protected] # Reactive variable for tracker | ||
[email protected] # Helpful client-side library | ||
[email protected].1 # Meteor's client-side reactive programming library | ||
[email protected].2 # Meteor's client-side reactive programming library | ||
|
||
[email protected].2 # CSS minifier run for production mode | ||
[email protected].1 # JS minifier run for production mode | ||
[email protected].3 # CSS minifier run for production mode | ||
[email protected].2 # JS minifier run for production mode | ||
[email protected] # ECMAScript 5 compatibility for older browsers. | ||
[email protected].1 # Enable ECMAScript2015+ syntax in app code | ||
[email protected].1 # Server-side component of the `meteor shell` command | ||
[email protected].3 # Enable ECMAScript2015+ syntax in app code | ||
[email protected].2 # Server-side component of the `meteor shell` command | ||
|
||
[email protected] | ||
[email protected] | ||
[email protected].16 | ||
[email protected].17 | ||
|
||
mdg:validated-method | ||
kadira:flow-router | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[email protected].2.3 | ||
[email protected].3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// *************************************************************** | ||
// Config for both client and server | ||
// *************************************************************** | ||
|
||
// Extra logging for SimpleSchema. Turn off in production! | ||
SimpleSchema.debug = true; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 3 additions & 6 deletions
9
imports/startup/client/router/index.js → imports/startup/client/config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
// *************************************************************** | ||
// Router bundle | ||
// Config for client-side only | ||
// *************************************************************** | ||
|
||
// Routing | ||
import './config.js'; | ||
import './filters.js'; | ||
import './pages.js'; | ||
import './documents.js'; | ||
// Extra logging for Autoform. Turn off in production! | ||
AutoForm.debug() |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// *************************************************************** | ||
// Router bundle | ||
// *************************************************************** | ||
|
||
// Config | ||
import './router-config.js'; | ||
import './filter-config.js'; | ||
|
||
// Routes | ||
import './page-routes.js'; | ||
import './document-routes.js'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters