├── .gitignore ├── CONTRIBUTING.MD ├── LICENSE.txt ├── README.md ├── bin └── interstellar.js ├── docs └── guides │ ├── building.md │ ├── developing-interstellar-module.md │ ├── module-list.md │ └── readme.md ├── gulpfile.es6 ├── gulpfile.js ├── lib ├── building.es6 ├── cleaning.es6 ├── cli.es6 ├── deploying.es6 ├── generating.es6 ├── karma.config.es6 ├── serving.es6 ├── testing.es6 ├── util.es6 ├── webpack.compile-concat-plugin.es6 └── webpack.config.es6 ├── npm-shrinkwrap.json ├── package.json └── stroopy.txt /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/CONTRIBUTING.MD -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/README.md -------------------------------------------------------------------------------- /bin/interstellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/bin/interstellar.js -------------------------------------------------------------------------------- /docs/guides/building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/docs/guides/building.md -------------------------------------------------------------------------------- /docs/guides/developing-interstellar-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/docs/guides/developing-interstellar-module.md -------------------------------------------------------------------------------- /docs/guides/module-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/docs/guides/module-list.md -------------------------------------------------------------------------------- /docs/guides/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/docs/guides/readme.md -------------------------------------------------------------------------------- /gulpfile.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/gulpfile.es6 -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/building.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/building.es6 -------------------------------------------------------------------------------- /lib/cleaning.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/cleaning.es6 -------------------------------------------------------------------------------- /lib/cli.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/cli.es6 -------------------------------------------------------------------------------- /lib/deploying.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/deploying.es6 -------------------------------------------------------------------------------- /lib/generating.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/generating.es6 -------------------------------------------------------------------------------- /lib/karma.config.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/karma.config.es6 -------------------------------------------------------------------------------- /lib/serving.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/serving.es6 -------------------------------------------------------------------------------- /lib/testing.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/testing.es6 -------------------------------------------------------------------------------- /lib/util.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/util.es6 -------------------------------------------------------------------------------- /lib/webpack.compile-concat-plugin.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/webpack.compile-concat-plugin.es6 -------------------------------------------------------------------------------- /lib/webpack.config.es6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/lib/webpack.config.es6 -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/package.json -------------------------------------------------------------------------------- /stroopy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stellar-deprecated/interstellar/HEAD/stroopy.txt --------------------------------------------------------------------------------