forked from firefox-devtools/profiler
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move index.js to src/content/index.js to speed up webpack
- Loading branch information
Showing
3 changed files
with
14 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "perf.html", | ||
"version": "0.0.1", | ||
"description": "perf.html, the gecko profiler UI", | ||
"main": "index.js", | ||
"main": "src/content/index.js", | ||
"scripts": { | ||
"test": "npm run build && npm run test-all", | ||
"test-all": "NODE_ENV=test nyc mocha --compilers js:babel-core/register 'test/**/*.js' 'src/**/test/*.js'", | ||
|
@@ -18,8 +18,8 @@ | |
"build-prod": "npm run build:clean && NODE_ENV=production webpack -p --progress", | ||
"build:clean": "rimraf dist && mkdirp dist && cp res/.htaccess dist/ && cp res/zee-worker.js dist/", | ||
"publish": "rimraf public_html && cp -r dist public_html", | ||
"eslint": "eslint index.js src", | ||
"eslint-fix": "eslint --fix index.js src", | ||
"eslint": "eslint src", | ||
"eslint-fix": "eslint --fix src", | ||
"documentation": "documentation" | ||
}, | ||
"author": "Markus Stange <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters