├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── example └── readme │ ├── build.sh │ ├── bundle.js │ ├── index.html │ └── index.js ├── index.js ├── package.json └── test ├── a_mixin_utils.js └── b_mixins.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.swp 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/README.md -------------------------------------------------------------------------------- /example/readme/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/example/readme/build.sh -------------------------------------------------------------------------------- /example/readme/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/example/readme/bundle.js -------------------------------------------------------------------------------- /example/readme/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/example/readme/index.html -------------------------------------------------------------------------------- /example/readme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/example/readme/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/package.json -------------------------------------------------------------------------------- /test/a_mixin_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/test/a_mixin_utils.js -------------------------------------------------------------------------------- /test/b_mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brigand/smart-mixin/HEAD/test/b_mixins.js --------------------------------------------------------------------------------