├── .gitignore ├── LICENSE ├── README.md ├── bin └── tinypack ├── examples ├── 01-simple │ └── index.ts ├── 02-modules │ ├── hello.ts │ └── index.ts ├── 03-duplication │ ├── index.ts │ └── subpath │ │ ├── common.ts │ │ └── index.ts ├── 04-circular │ ├── index.ts │ └── module.ts └── 05-node-modules │ ├── index.ts │ └── module.ts ├── package.json ├── src └── tinypack.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/README.md -------------------------------------------------------------------------------- /bin/tinypack: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require("../dist/tinypack"); 3 | -------------------------------------------------------------------------------- /examples/01-simple/index.ts: -------------------------------------------------------------------------------- 1 | console.log("hello, world"); 2 | -------------------------------------------------------------------------------- /examples/02-modules/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/02-modules/hello.ts -------------------------------------------------------------------------------- /examples/02-modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/02-modules/index.ts -------------------------------------------------------------------------------- /examples/03-duplication/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/03-duplication/index.ts -------------------------------------------------------------------------------- /examples/03-duplication/subpath/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/03-duplication/subpath/common.ts -------------------------------------------------------------------------------- /examples/03-duplication/subpath/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/03-duplication/subpath/index.ts -------------------------------------------------------------------------------- /examples/04-circular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/04-circular/index.ts -------------------------------------------------------------------------------- /examples/04-circular/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/04-circular/module.ts -------------------------------------------------------------------------------- /examples/05-node-modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/05-node-modules/index.ts -------------------------------------------------------------------------------- /examples/05-node-modules/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/examples/05-node-modules/module.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/package.json -------------------------------------------------------------------------------- /src/tinypack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/src/tinypack.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hatashiro/tinypack/HEAD/yarn.lock --------------------------------------------------------------------------------