-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from wardpeet/feat/stack-packs-lighthouse
chore: convert json packs to js packs for better LH integration
- Loading branch information
Showing
19 changed files
with
880 additions
and
121 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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node_modules/ | ||
**/*.d.ts |
Binary file not shown.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const stackPacks = [ | ||
require('./packs/wordpress.js'), | ||
require('./packs/react.js'), | ||
require('./packs/angular.js'), | ||
require('./packs/amp.js'), | ||
require('./packs/magento.js') | ||
]; | ||
|
||
module.exports = stackPacks; |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "lighthouse-stack-packs", | ||
"version": "0.0.1-0", | ||
"description": "Lighthouse Stack Packs", | ||
"repository": "GoogleChrome/lighthouse-stack-packs", | ||
"keywords": [ | ||
"google", | ||
"chrome", | ||
"lighthouse" | ||
], | ||
"author": "The Chromium Authors", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/GoogleChrome/lighthouse-stack-packs/issues" | ||
}, | ||
"homepage": "https://github.com/GoogleChrome/lighthouse-stack-packs#readme", | ||
"main": "index.js", | ||
"devDependencies": { | ||
"del-cli": "^3.0.0", | ||
"typescript": "^3.8.2" | ||
}, | ||
"scripts": { | ||
"prepublishOnly": "del-cli \"*.d.ts\" \"packs/*.d.ts\" && npm run generate-types", | ||
"generate-types": "tsc -p ." | ||
}, | ||
"files": [ | ||
"packs/*", | ||
"index.d.ts" | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "lighthouse-stack-packs", | ||
"version": "0.0.1", | ||
"description": "Lighthouse Stack Packs", | ||
"repository": "GoogleChrome/lighthouse-stack-packs", | ||
"keywords": [ | ||
"google", | ||
"chrome", | ||
"lighthouse" | ||
], | ||
"author": "The Chromium Authors", | ||
"license": "Apache-2.0", | ||
"bugs": { | ||
"url": "https://github.com/GoogleChrome/lighthouse-stack-packs/issues" | ||
}, | ||
"homepage": "https://github.com/GoogleChrome/lighthouse-stack-packs#readme", | ||
"main": "index.js", | ||
"devDependencies": { | ||
"del-cli": "^3.0.0", | ||
"typescript": "^3.8.2" | ||
}, | ||
"scripts": { | ||
"prepublishOnly": "del-cli \"*.d.ts\" \"packs/*.d.ts\" && npm run generate-types", | ||
"generate-types": "tsc -p ." | ||
}, | ||
"files": [ | ||
"packs/*", | ||
"index.d.ts" | ||
] | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.