├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── async.js ├── cjs ├── async.js ├── index.js ├── package.json └── x.js ├── es.js ├── esm.js ├── esm ├── async.js ├── index.js └── x.js ├── index.d.ts ├── index.js ├── min.js ├── min.js.br ├── package.json ├── rollup ├── async.config.js ├── es.config.js ├── esm.config.js └── index.config.js ├── test ├── async.html ├── button.html ├── children.html ├── click.html ├── collapsible.html ├── counter.mjs ├── effect.html ├── effect2.html ├── index.js ├── indirect.html ├── indirect.mjs ├── issue-10.html ├── issue-37.html ├── lfx.html ├── mixed.html ├── multi-return.html ├── package.json ├── registry.mjs ├── state-counter.html ├── swr.html ├── timer.html └── use-mo.html └── uland-head.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | .travis.yml 4 | node_modules/ 5 | rollup/ 6 | test/ 7 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/README.md -------------------------------------------------------------------------------- /async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/async.js -------------------------------------------------------------------------------- /cjs/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/cjs/async.js -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /cjs/x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/cjs/x.js -------------------------------------------------------------------------------- /es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/es.js -------------------------------------------------------------------------------- /esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/esm.js -------------------------------------------------------------------------------- /esm/async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/esm/async.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/esm/index.js -------------------------------------------------------------------------------- /esm/x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/esm/x.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/min.js -------------------------------------------------------------------------------- /min.js.br: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/min.js.br -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/package.json -------------------------------------------------------------------------------- /rollup/async.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/rollup/async.config.js -------------------------------------------------------------------------------- /rollup/es.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/rollup/es.config.js -------------------------------------------------------------------------------- /rollup/esm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/rollup/esm.config.js -------------------------------------------------------------------------------- /rollup/index.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/rollup/index.config.js -------------------------------------------------------------------------------- /test/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/async.html -------------------------------------------------------------------------------- /test/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/button.html -------------------------------------------------------------------------------- /test/children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/children.html -------------------------------------------------------------------------------- /test/click.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/click.html -------------------------------------------------------------------------------- /test/collapsible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/collapsible.html -------------------------------------------------------------------------------- /test/counter.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/counter.mjs -------------------------------------------------------------------------------- /test/effect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/effect.html -------------------------------------------------------------------------------- /test/effect2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/effect2.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | require('../cjs'); -------------------------------------------------------------------------------- /test/indirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/indirect.html -------------------------------------------------------------------------------- /test/indirect.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/indirect.mjs -------------------------------------------------------------------------------- /test/issue-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/issue-10.html -------------------------------------------------------------------------------- /test/issue-37.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/issue-37.html -------------------------------------------------------------------------------- /test/lfx.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/lfx.html -------------------------------------------------------------------------------- /test/mixed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/mixed.html -------------------------------------------------------------------------------- /test/multi-return.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/multi-return.html -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/package.json -------------------------------------------------------------------------------- /test/registry.mjs: -------------------------------------------------------------------------------- 1 | export default new Map; 2 | -------------------------------------------------------------------------------- /test/state-counter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/state-counter.html -------------------------------------------------------------------------------- /test/swr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/swr.html -------------------------------------------------------------------------------- /test/timer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/timer.html -------------------------------------------------------------------------------- /test/use-mo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/test/use-mo.html -------------------------------------------------------------------------------- /uland-head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/uland/HEAD/uland-head.jpg --------------------------------------------------------------------------------