hut-build
Version:
HTML UI Toolkit build tool
20 lines (13 loc) • 720 B
JavaScript
;(function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);throw new Error("Cannot find module '"+o+"'")}var f=n[o]={exports:{}};t[o][0].call(f.exports,function(e){var n=t[o][1][e];return s(n?n:e)},f,f.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){
;
var foo = require('../');
foo();
},{"../":2}],2:[function(require,module,exports){
;
var document = window.document;
function foo() {
document.querySelector('.hello').innerText = 'Hello World!';
}
module.exports = foo;
},{}]},{},[1])
;