Merge pull request #106 from mozilla/remove-nodemon

chore(package.json): remove nodemon dependency
This commit is contained in:
Sean McArthur 2015-04-09 16:06:32 -07:00
Родитель eb9ee3f882 6301945f74
Коммит cdc997dfdf
4 изменённых файлов: 25 добавлений и 1463 удалений

1471
npm-shrinkwrap.json сгенерированный

Разница между файлами не показана из-за своего большого размера Загрузить разницу

Просмотреть файл

@ -5,7 +5,7 @@
"description": "Firefox Accounts Profile service.",
"main": "index.js",
"scripts": {
"start": "grunt server",
"start": "scripts/run_dev.js",
"test": "grunt test --node-env=test",
"preinstall": "./scripts/check_gm.sh",
"outdated": "npm outdated --depth 0"
@ -34,7 +34,6 @@
"grunt-copyright": "^0.1.0",
"grunt-jscs": "^0.8.1",
"grunt-mocha-test": "^0.12.1",
"grunt-nodemon": "^0.3.0",
"grunt-nsp-shrinkwrap": "^0.0.3",
"insist": "0.x",
"jshint-stylish": "^1.0.0",

0
scripts/run_dev.js Normal file → Executable file
Просмотреть файл

Просмотреть файл

@ -1,14 +0,0 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
module.exports = function (grunt) {
'use strict';
grunt.config('nodemon', {
dev: {
script: 'scripts/run_dev.js',
}
});
grunt.registerTask('server', ['nodemon:dev']);
};