This is a basic Webpack project template for a web app written in ES6 & LESS.
This assumes you have a directory structure as follows:
package.json
webpack.config.js
src/
# SETUP: install documentation.js: | |
npm i -g documentation browser-pipe | |
# SETUP: install gist cli (github.com/defunkt/gist) | |
brew install gist | |
# generate docs, upload to gist.github.com, then pipe the Gist URL to Documentation Viewer in your browser: | |
documentation src | gist -p -f docs.json | awk '{print "https://documentation-viewer.firebaseapp.com/#"$1}' | browser-pipe |
!function(e,t){if("function"==typeof define&&define.amd)define(["exports"],t);else if("undefined"!=typeof exports)t(exports);else{var n={exports:{}};t(n.exports),e.preact=n.exports}}(this,function(e){"use strict";function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){var n=arguments.length<=2||void 0===arguments[2]?null:arguments[2],r=h(n,e),o=r._component;return o&&i(o,"componentWillMount"),t.appendChild(r),o&&i(o,"componentDidMount"),r}function r(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;n>i;i++)r[i-2]=arguments[i];var c=void 0,l=[],u=r.length,d=void 0,p=void 0;if(u){c=[];for(var f=0;u>f;f++){var h=r[f];if(!a(h)){h.join?d=h:(d=l,d[0]=h);for(var m=0;m<d.length;m++){var v=d[m],g=!a(v)&&!s(v);g&&(v=String(v)),g&&p?c[c.length-1]+=v:a(v)||c.push(v),p=g}}}}t&&t.children&&delete t.children;var y=new F(e,t||void 0,c||void 0);return o(M,"vnode",y),y}function o(e,t){for(var n=e[t],r=arguments.length,o=Array(r>2?r-2:0),i=2;r>i;i++)o[i-2]=arguments[i]; |
!function(e,t){if("function"==typeof define&&define.amd)define(["exports"],t);else if("undefined"!=typeof exports)t(exports);else{var n={exports:{}};t(n.exports),e.preact=n.exports}}(this,function(e){"use strict";function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){var n=arguments.length<=2||void 0===arguments[2]?null:arguments[2],r=n&&n._component&&n._componentConstructor===e.nodeName,o=f(n,e),s=!r&&o._component;return s&&i(s,"componentWillMount"),f.parentNode!==t&&t.appendChild(o),s&&i(s,"componentDidMount"),o}function r(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;n>i;i++)r[i-2]=arguments[i];var c=void 0,l=[],u=r.length,d=void 0,p=void 0;if(u){c=[];for(var f=0;u>f;f++){var h=r[f];if(!a(h)){h.join?d=h:(d=l,d[0]=h);for(var m=0;m<d.length;m++){var v=d[m],g=!a(v)&&!s(v);g&&(v=String(v)),g&&p?c[c.length-1]+=v:a(v)||c.push(v),p=g}}}}t&&t.children&&delete t.children;var y=new j(e,t||void 0,c||void 0);return o(M,"vnode",y),y}function o(e,t){for(var |
!function(e,t){if("function"==typeof define&&define.amd)define(["exports"],t);else if("undefined"!=typeof exports)t(exports);else{var n={exports:{}};t(n.exports),e.preact=n.exports}}(this,function(e){"use strict";function t(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function n(e,t){var n=arguments.length<=2||void 0===arguments[2]?null:arguments[2],r=n&&n._component&&n._componentConstructor===e.nodeName,o=h(n,e),s=!r&&o._component;return s&&i(s,"componentWillMount"),h.parentNode!==t&&t.appendChild(o),s&&i(s,"componentDidMount"),o}function r(e,t){for(var n=arguments.length,r=Array(n>2?n-2:0),i=2;n>i;i++)r[i-2]=arguments[i];var c=void 0,l=[],u=r.length,d=void 0,p=void 0;if(u){c=[];for(var f=0;u>f;f++){var h=r[f];if(!a(h)){h.join?d=h:(d=l,d[0]=h);for(var m=0;m<d.length;m++){var v=d[m],g=!a(v)&&!s(v);g&&(v=String(v)),g&&p?c[c.length-1]+=v:a(v)||c.push(v),p=g}}}}t&&t.children&&delete t.children;var y=new F(e,t||void 0,c||void 0);return o(E,"vnode",y),y}function o(e,t){for(var |
This is a first crack at generated docs for Preact.
Base Component class, for he ES6 Class method of creating Components
// series/sequence | |
let [a, b] = [await one(), await two()]; | |
// parallel | |
let [a, b] = await* [one(), two()]; |
// mixins with createClass: | |
const Foo = createClass({ | |
...someMixin, | |
render: ({ onClick, children }) => ( | |
<div class="foo"> | |
<button onClick={onClick}>Click Me</button> | |
{ children } | |
</div> | |
) |
made with esnextbin