Skip to content

chore(install): remove further unused stuff #3088

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 11, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,26 +59,18 @@
"compression-webpack-plugin": "^0.3.2",
"configstore": "^2.0.0",
"core-js": "^2.4.0",
"core-object": "0.0.2",
"css-loader": "^0.23.1",
"debug": "^2.1.3",
"denodeify": "^1.2.1",
"diff": "^2.2.2",
"ember-cli-normalize-entity-name": "^1.0.0",
"ember-cli-preprocess-registry": "^2.0.0",
"ember-cli-string-utils": "^1.0.0",
"enhanced-resolve": "^2.2.2",
"exists-sync": "0.0.3",
"exit": "^0.1.2",
"exports-loader": "^0.6.3",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^2.0.0-beta.4",
"file-loader": "^0.8.5",
"findup": "0.1.5",
"findup-sync": "^0.2.1",
"fs-extra": "^0.30.0",
"fs-monitor-stack": "^1.0.2",
"fs.realpath": "^1.0.0",
"get-caller-file": "^1.0.0",
"git-repo-info": "^1.0.4",
"glob": "^7.0.3",
Expand Down Expand Up @@ -120,11 +112,9 @@
"rimraf": "^2.5.3",
"rsvp": "^3.0.17",
"rxjs": "5.0.0-beta.12",
"sane": "^1.1.1",
"sass-loader": "^3.2.0",
"script-loader": "^0.7.0",
"semver": "^5.1.0",
"shelljs": "^0.7.0",
"silent-error": "^1.0.0",
"source-map-loader": "^0.1.5",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
Expand All @@ -134,7 +124,6 @@
"stylus-loader": "^2.1.0",
"temp": "0.8.3",
"through": "^2.3.6",
"tree-sync": "^1.1.0",
"ts-loader": "^0.8.2",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.4",
Expand Down
3 changes: 1 addition & 2 deletions packages/angular-cli/bin/ng
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
process.title = 'angular-cli';

const resolve = require('resolve');
const exit = require('exit');
const packageJson = require('../package.json');
const Leek = require('leek');
const Version = require('../upgrade/version').Version;
Expand Down Expand Up @@ -40,7 +39,7 @@ resolve('angular-cli', { basedir: process.cwd() },
Leek: CustomLeek
}).then(function (result) {
var exitCode = typeof result === 'object' ? result.exitCode : result;
exit(exitCode);
process.exit(exitCode);
});

function CustomLeek(options) {
Expand Down
6 changes: 3 additions & 3 deletions packages/angular-cli/ember-cli/lib/cli/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
'use strict';
var path = require('path');

// Main entry point
var Project = require('../models/project');
var requireAsHash = require('../utilities/require-as-hash');
var Command = require('../models/command');
var commands = requireAsHash('../commands/*.js', Command);
var commands = requireAsHash(path.join(__dirname, '../commands/*.js'), Command);
var Task = require('../models/task');
var tasks = requireAsHash('../tasks/*.js', Task);
var tasks = requireAsHash(path.join(__dirname, '../tasks/*.js'), Task);
var CLI = require('./cli');
var packageConfig = require('../../../package.json');
var debug = require('debug')('ember-cli:cli/index');
var merge = require('lodash/merge');
var path = require('path');

var version = packageConfig.version;
var name = packageConfig.name;
Expand Down
22 changes: 0 additions & 22 deletions packages/angular-cli/ember-cli/lib/commands/addon.js

This file was deleted.

19 changes: 0 additions & 19 deletions packages/angular-cli/ember-cli/lib/commands/asset-sizes.js

This file was deleted.

50 changes: 0 additions & 50 deletions packages/angular-cli/ember-cli/lib/commands/build.js

This file was deleted.

77 changes: 0 additions & 77 deletions packages/angular-cli/ember-cli/lib/commands/destroy.js

This file was deleted.

132 changes: 0 additions & 132 deletions packages/angular-cli/ember-cli/lib/commands/help.js

This file was deleted.

Loading