├── .clang-format ├── .editorconfig ├── .eslintrc ├── .gitignore ├── LICENSE.md ├── README.md ├── binding.gyp ├── lib ├── index.js ├── index.test.js └── worker-subject.js ├── package.json ├── prettier.config.js ├── scripts └── build.js ├── src ├── generic-streaming-worker.h └── puglify-worker.cpp ├── vendor ├── neither │ ├── either.hpp │ ├── lift.hpp │ ├── maybe.hpp │ ├── neither.hpp │ ├── traits.hpp │ └── try.hpp └── uglify │ ├── generic-streaming-worker.h │ ├── puglify-worker.cpp │ └── uglify.js.c └── yarn.lock /.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: Google 3 | AlignAfterOpenBracket: AlwaysBreak 4 | Language: Cpp -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/binding.gyp -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/lib/index.test.js -------------------------------------------------------------------------------- /lib/worker-subject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/lib/worker-subject.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | singleQuote: true, 3 | printWidth: 80 4 | }; 5 | -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/scripts/build.js -------------------------------------------------------------------------------- /src/generic-streaming-worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/src/generic-streaming-worker.h -------------------------------------------------------------------------------- /src/puglify-worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/src/puglify-worker.cpp -------------------------------------------------------------------------------- /vendor/neither/either.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/neither/either.hpp -------------------------------------------------------------------------------- /vendor/neither/lift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/neither/lift.hpp -------------------------------------------------------------------------------- /vendor/neither/maybe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/neither/maybe.hpp -------------------------------------------------------------------------------- /vendor/neither/neither.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/neither/neither.hpp -------------------------------------------------------------------------------- /vendor/neither/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/neither/traits.hpp -------------------------------------------------------------------------------- /vendor/neither/try.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/neither/try.hpp -------------------------------------------------------------------------------- /vendor/uglify/generic-streaming-worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/uglify/generic-streaming-worker.h -------------------------------------------------------------------------------- /vendor/uglify/puglify-worker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/uglify/puglify-worker.cpp -------------------------------------------------------------------------------- /vendor/uglify/uglify.js.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/vendor/uglify/uglify.js.c -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/puglify/HEAD/yarn.lock --------------------------------------------------------------------------------