├── .gitignore ├── LICENSE ├── README.md ├── core ├── file.js └── packager.js ├── doc ├── autopack.pdf └── pack.png ├── index.js ├── lib └── util.js ├── log ├── README.MD ├── process │ ├── log.map.js │ └── log.reduce.js └── statistics │ └── compiler.require.php ├── package.json └── test ├── files.json └── pack.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/README.md -------------------------------------------------------------------------------- /core/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/core/file.js -------------------------------------------------------------------------------- /core/packager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/core/packager.js -------------------------------------------------------------------------------- /doc/autopack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/doc/autopack.pdf -------------------------------------------------------------------------------- /doc/pack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/doc/pack.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/index.js -------------------------------------------------------------------------------- /lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/lib/util.js -------------------------------------------------------------------------------- /log/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/log/README.MD -------------------------------------------------------------------------------- /log/process/log.map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/log/process/log.map.js -------------------------------------------------------------------------------- /log/process/log.reduce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/log/process/log.reduce.js -------------------------------------------------------------------------------- /log/statistics/compiler.require.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/log/statistics/compiler.require.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/package.json -------------------------------------------------------------------------------- /test/files.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/test/files.json -------------------------------------------------------------------------------- /test/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fex-team/autopack-kernel/HEAD/test/pack.js --------------------------------------------------------------------------------