From db89a198067f1f4066de4f6d00d1fbda5922ee0b Mon Sep 17 00:00:00 2001 From: Matteo De Micheli Date: Wed, 29 Oct 2014 22:01:16 +0100 Subject: [PATCH] Removed velocity, since it made problems --- .meteor/packages | 5 +---- README.md | 14 +++++--------- tests/mocha/dummyTest.js | 9 --------- 3 files changed, 6 insertions(+), 22 deletions(-) delete mode 100644 tests/mocha/dummyTest.js diff --git a/.meteor/packages b/.meteor/packages index 3db86a9..9177b35 100644 --- a/.meteor/packages +++ b/.meteor/packages @@ -10,9 +10,6 @@ underscore accounts-password accounts-ui aldeed:collection2 -mrt:iron-router-progress iron:router raix:handlebar-helpers -nooitaf:semantic-ui -velocity:html-reporter -mike:mocha +nooitaf:semantic-ui-less diff --git a/README.md b/README.md index 1e483d8..ebbb504 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This boilerplate is here to give you a starting point for your meteor projects, with a console tool to ease up some tasks. Here's what you get with it. * meteor-boilerplate console tool, for scaffolding files and more -* Essential atmosphere packages included, like [Iron Router](https://github.com/EventedMind/iron-router) and [Velocity](https://github.com/xolvio/velocity) +* Essential atmosphere packages included, like [Iron Router](https://github.com/EventedMind/iron-router) * Profile support for ES6 and Coffeescript The boilerplate looks like following: [boilerplate.meteor.com](http://boilerplate.meteor.com). Have a look at [starthacking](http://starthacking.meteor.com/) for a project created with this boilerplate. @@ -60,15 +60,12 @@ node meteor-boilerplate mup:deploy # deploys to server * less * jquery * underscore -* handlebar-helpers -* iron-router * accounts-password * accounts-ui -* iron-router-progress -* semantic-ui -* collection2 -* velocity-html-reporter -* mocha-web-velocity +* aldeed:collection2 +* iron:router +* raix:handlebar-helpers +* nooitaf:semantic-ui-less The "insecure" and "autopublish" packages are removed by default (they make your app vulnerable). @@ -94,7 +91,6 @@ server/ # Server folder lib/ # Server side library folder publications/ # Collection publications(*) startup/ # On server startup -tests/ # Velocity test files, can be run with mocha(*) meteor-boilerplate # Command line tool ``` diff --git a/tests/mocha/dummyTest.js b/tests/mocha/dummyTest.js deleted file mode 100644 index 3e8fa58..0000000 --- a/tests/mocha/dummyTest.js +++ /dev/null @@ -1,9 +0,0 @@ -if (!(typeof MochaWeb === 'undefined')){ - MochaWeb.testOnly(function () { - describe("__testName__ Test Suite", function () { - it("should let 5 + 5 be 10", function () { - chai.assert.equal(5 + 5, 10); - }); - }); - }); -}