Skip to content

Commit

Permalink
Updated to Meteor 1.4.3.1 + dependencies, also made a few changes to …
Browse files Browse the repository at this point in the history
…file names
  • Loading branch information
kjetilhau committed Feb 24, 2017
1 parent 17f9da5 commit b9c3139
Show file tree
Hide file tree
Showing 16 changed files with 73 additions and 60 deletions.
1 change: 1 addition & 0 deletions .meteor/.finished-upgraders
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ notices-for-facebook-graph-api-2
1.3.0-split-minifiers-package
1.4.0-remove-old-dev-bundle-link
1.4.1-add-shell-server-package
1.4.3-split-account-service-packages
14 changes: 7 additions & 7 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[email protected].2.3
[email protected].3.1
66 changes: 33 additions & 33 deletions .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -9,62 +9,62 @@ aldeed:[email protected]
[email protected]
arillo:[email protected]
[email protected]
babel-compiler@6.13.0
babel-compiler@6.14.1
[email protected]
[email protected]
[email protected]
blaze@2.1.9
blaze-html-templates@1.0.5
blaze@2.3.0
blaze-html-templates@1.1.0
[email protected]
[email protected]
[email protected]
caching-html-compiler@1.0.7
caching-html-compiler@1.1.0
[email protected]
[email protected].4
[email protected].5
[email protected]_4
[email protected]
[email protected].2
[email protected].3
[email protected]
[email protected]
[email protected].12
[email protected].13
[email protected]
[email protected]
[email protected].1
[email protected].3
[email protected]
[email protected]
[email protected]
[email protected]
fortawesome:fontawesome@4.6.3
fortawesome:fontawesome@4.7.0
fourseven:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].10
[email protected].11
[email protected]
[email protected]
kadira:[email protected]
kadira:[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected].16
[email protected].17
mdg:[email protected]
mdg:[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected].15
[email protected].15
[email protected].19
[email protected].16
[email protected].17
[email protected].20
[email protected]
[email protected].13
[email protected].7
[email protected].7
[email protected].14
[email protected].9
[email protected].9
momentjs:[email protected]
[email protected].14
[email protected].15
[email protected]
[email protected].11_2
[email protected].14
[email protected].16_1
[email protected].15
[email protected]
[email protected]
raix:[email protected]
Expand All @@ -77,20 +77,20 @@ [email protected]
[email protected]
[email protected]
[email protected]
[email protected].1
[email protected].2
[email protected]
spacebars-compiler@1.0.13
[email protected].2
[email protected].1
templating@1.2.15
templating-compiler@1.2.15
templating-runtime@1.2.15
templating-tools@1.0.5
spacebars-compiler@1.1.0
[email protected].3
[email protected].2
templating@1.3.0
templating-compiler@1.3.0
templating-runtime@1.3.0
templating-tools@1.1.0
themeteorchef:[email protected]
[email protected].1
[email protected].2
[email protected]
[email protected]
url@1.0.11
[email protected].12
url@1.1.0
[email protected].13
[email protected]
zimme:[email protected]
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ A boilerplate for Meteor - giving you a simple and more organized way to create

It comes with a complete collection sample including publications, subscriptions and CRUD functionality. Routes, views and some nice helpers are also included.

And yes, we use Blaze :)

Take a look at [meteorskeleton.herokuapp.com](https://meteorskeleton.herokuapp.com) for a demo.

![Meteor-skeleton](http://i.imgur.com/Soq1xnF.png)
Expand Down
4 changes: 2 additions & 2 deletions imports/startup/both/_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
// Bundle for client AND server modules
// ***************************************************************

// Debug options. Turn off in production!
SimpleSchema.debug = true;
// Config
import './config.js'
6 changes: 6 additions & 0 deletions imports/startup/both/config.js
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;
5 changes: 4 additions & 1 deletion imports/startup/client/_main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
// Bundle for client modules
// ***************************************************************

// Config
import './config';

// Main modules
import './router/index.js';
import './router/router.js';
import './accounts.js';
import './subscriptions.js';

Expand Down
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.
11 changes: 11 additions & 0 deletions imports/startup/client/router/router.js
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';
7 changes: 2 additions & 5 deletions imports/ui/pages/about/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ <h1>Meteor-skeleton</h1>
A boilerplate for Meteor - giving you a simple and more organized way to create projects.
</p>
<p>
It comes with a complete collection sample including publications, subscriptions and CRUD functionality. Routes, views and
some nice helpers are also included.
</p>
<p>
And yes, we use Blaze :)
It comes with a complete collection sample including publications, subscriptions and CRUD functionality. Routes, views and some nice
helpers are also included.
</p>
<div class="row">
<div class="col-md-6">
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"start": "meteor run"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"babel-runtime": "^6.23.0",
"bootstrap-sass": "^3.3.7",
"meteor-node-stubs": "~0.2.0",
"moment": "^2.15.2"
"meteor-node-stubs": "~0.2.5",
"moment": "^2.17.1"
}
}

0 comments on commit b9c3139

Please sign in to comment.