Skip to content

Commit

Permalink
Feature/comments and styling (#5)
Browse files Browse the repository at this point in the history
* Update color

* Using --no-compress flag to keep comments

* remove types field (unused at present)
  • Loading branch information
briancodes authored Jul 3, 2019
1 parent 3af406a commit ce2a34a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
node_modules
app/build
.cache
.rts*
dist
coverage
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const FLEX_CONTAINER_CLASS = 'dom-log__flex-container';
const BACKGROUND_COLOR = '#212020';
const BORDER_COLOR = '#cececec4';
const PRE_STYLE = {
color: '#7db15a',
color: '#40c64c',
fontSize: ' 0.9em',
overflowX: 'auto',
margin: '0',
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"scripts": {
"serve": "parcel app/app-index.html --out-dir app/build --open",
"build": "microbundle --name domLog",
"build": "microbundle --name domLog --no-compress",
"test": "jest",
"coverage": "jest --coverage",
"release": "npm run build && np"
Expand All @@ -21,7 +21,6 @@
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"files": [
"lib",
"dist"
Expand Down

0 comments on commit ce2a34a

Please sign in to comment.