├── .gitignore ├── README.md └── src ├── AssetCleaner.js ├── AssetSize.js ├── FileHelper.js ├── Utils.js └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foupwang/AssetCleanerForCocosCreator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foupwang/AssetCleanerForCocosCreator/HEAD/README.md -------------------------------------------------------------------------------- /src/AssetCleaner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foupwang/AssetCleanerForCocosCreator/HEAD/src/AssetCleaner.js -------------------------------------------------------------------------------- /src/AssetSize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foupwang/AssetCleanerForCocosCreator/HEAD/src/AssetSize.js -------------------------------------------------------------------------------- /src/FileHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foupwang/AssetCleanerForCocosCreator/HEAD/src/FileHelper.js -------------------------------------------------------------------------------- /src/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foupwang/AssetCleanerForCocosCreator/HEAD/src/Utils.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foupwang/AssetCleanerForCocosCreator/HEAD/src/main.js --------------------------------------------------------------------------------