Skip to content

Commit

Permalink
Merge 910b0d0 into 071bc19
Browse files Browse the repository at this point in the history
  • Loading branch information
tbranyen committed Nov 21, 2021
2 parents 071bc19 + 910b0d0 commit 8a8c70c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/api.html
Expand Up @@ -270,8 +270,8 @@ <h1>

<section id="content"><h1 id="a-hrefapihtmlcore-apia-a-classgithub-hrefhttpsgithubcomtbranyendiffhtmltreemasterpackagesdiffhtmli-classfa-fa-githubia"><a href="/api.html">Core API</a> <a class="github" href="https://github.com/tbranyen/diffhtml/tree/master/packages/diffhtml"><i class="fa fa-github"></i></a></h1>
<p>This documentation covers the core public API. All methods can work in the
browser, with JSDOM, and directly in Node without JSDOM.</p>
<p><u>Special terms:</u></p>
browser, with JSDOM, and directly in NodeJS without JSDOM.</p>
<p><u>Terminology:</u></p>
<ul>
<li><p><strong>VTree</strong>: You will see them mentioned throughout the documentation. They are
JavaScript objects that represent a DOM node. They store information such as
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Expand Up @@ -392,8 +392,8 @@ <h3 id="a-hreftodomvcutodomvcua"><a href="#todomvc"><u>TodoMVC</u></a></h3>
build setup. Rollup bundles the source and executes
<a href="/tools.html#babel-transform" title="null">babel-transform</a>

which transforms all UI markup into JavaScript at build time and replaces the core build
with the lite version improve build size.
which transforms all UI markup into JavaScript at build time. Replaces the core build
with the lite version to reduce build size.
<a href="https://github.com/google/zopfli" target="_blank" rel="noopener noreferrer" title="null">Zopfli</a>
is used to pre-gzip the markup
bringing the production output size to ~14kb. Loads diffHTML and plugins from
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -28,6 +28,6 @@
},
"homepage": "https://diffhtml.org/",
"devDependencies": {
"lerna": "^3.22.1"
"lerna": "^4.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/diffhtml-components/package.json
Expand Up @@ -27,7 +27,7 @@
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-visualizer": "^2.6.0",
"rollup-watch": "^4.3.1",
"typescript": "^4.1.3",
"typescript": "4.1.3",
"uglify-js": "^3.12.4"
},
"scripts": {
Expand Down
4 changes: 4 additions & 0 deletions packages/diffhtml-devtools/build/tasks/shell.coffee
Expand Up @@ -11,6 +11,10 @@ module.exports = ->
# https://code.google.com/p/selenium/wiki/ChromeDriver#Requirements
if process.platform is 'linux'
chrome = '/usr/bin/google-chrome'

if not fs.existsSync chrome
chrome = '/usr/bin/google-chrome-stable'

else if process.platform is 'darwin'
chrome = '"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome"'
else if process.platform is 'win32'
Expand Down
2 changes: 1 addition & 1 deletion packages/diffhtml/package.json
Expand Up @@ -55,7 +55,7 @@
"rollup-plugin-visualizer": "^2.6.0",
"rollup-watch": "^4.3.1",
"sinon": "^9.2.3",
"typescript": "^4.1.3",
"typescript": "4.1.3",
"uglify-js": "backports"
},
"nyc": {
Expand Down

0 comments on commit 8a8c70c

Please sign in to comment.