Skip to content

Commit

Permalink
REMOVE track_usage
Browse files Browse the repository at this point in the history
  • Loading branch information
ndelangen committed May 16, 2017
1 parent 747dc70 commit 32a530c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 94 deletions.
3 changes: 0 additions & 3 deletions app/react/src/server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import shelljs from 'shelljs';
import storybook from './middleware';
import packageJson from '../../package.json';
import { parseList, getEnvConfig } from './utils';
import { track, dontTrack } from './track_usage';

process.env.NODE_ENV = process.env.NODE_ENV || 'development';

Expand All @@ -22,7 +21,6 @@ program
.option('-h, --host [string]', 'Host to run Storybook')
.option('-s, --static-dir <dir-names>', 'Directory where to load static files from')
.option('-c, --config-dir [dir-name]', 'Directory where to load Storybook configurations from')
.option('--dont-track', 'Do not send anonymous usage stats.')
.option(
'--https',
'Serve Storybook over HTTPS. Note: You must provide your own certificate information.',
Expand Down Expand Up @@ -147,6 +145,5 @@ server.listen(...listenAddr, error => {
} else {
const address = `http://${program.host || 'localhost'}:${program.port}/`;
logger.info(`\nReact Storybook started on => ${chalk.cyan(address)}\n`);
track();
}
});
91 changes: 0 additions & 91 deletions app/react/src/server/track_usage.js

This file was deleted.

0 comments on commit 32a530c

Please sign in to comment.