-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- uses preact to reduce bundle size. - 208 KB -> 130 KB (60% reduction in size)
- Loading branch information
1 parent
b7acb20
commit e2b1ce3
Showing
7 changed files
with
46 additions
and
36 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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "tap-html", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"description": "📊 an html tap reporter", | ||
"author": "Gabriel J. Csapo <[email protected]>", | ||
"license": "ISC", | ||
|
@@ -19,7 +19,7 @@ | |
"coverage": "tap test --coverage --coverage-report=lcov", | ||
"storybook": "start-storybook -p 6006", | ||
"build-storybook": "build-storybook --output-dir=./docs/storybook", | ||
"generate-docs": "tryitout --template=landing --output=./docs" | ||
"generate-docs": "tryitout" | ||
}, | ||
"bin": { | ||
"tap-html": "./bin/index.js" | ||
|
@@ -37,23 +37,26 @@ | |
"html-webpack-inline-source-plugin": "0.0.9", | ||
"html-webpack-plugin": "^2.29.0", | ||
"memory-fs": "^0.4.1", | ||
"preact": "^8.2.6", | ||
"preact-compat": "^3.17.0", | ||
"prop-types": "^15.6.0", | ||
"psychic-ui": "^1.0.7", | ||
"react": "^16.0.0", | ||
"react-dom": "^16.0.0", | ||
"style-loader": "^0.19.0", | ||
"tap-parser": "^6.0.1", | ||
"tap-parser": "^7.0.0", | ||
"through2": "^2.0.3", | ||
"url-loader": "^0.6.2", | ||
"webpack": "^3.8.1" | ||
}, | ||
"devDependencies": { | ||
"@storybook/react": "^3.2.12", | ||
"@storybook/react": "^3.2.15", | ||
"babel-minify-webpack-plugin": "^0.2.0", | ||
"babel-polyfill": "^6.26.0", | ||
"eslint": "^4.9.0", | ||
"eslint-plugin-react": "^7.4.0", | ||
"tap": "^10.7.2", | ||
"react": "^16.1.1", | ||
"react-dom": "^16.1.1", | ||
"tap": "^10.7.3", | ||
"tape": "^4.6.3", | ||
"tryitout": "^0.3.4" | ||
"tryitout": "^1.1.1" | ||
} | ||
} |
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