├── .eslintrc ├── .gitignore ├── CHANGES.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── bin └── sl-build.js ├── index.js ├── lib └── git.js ├── package.json ├── sl-build.txt └── test ├── build-example.js ├── fixtures ├── suite │ ├── .gitignore │ ├── .jshintignore │ ├── .jshintrc │ ├── .loopbackrc │ ├── LICENSE │ ├── README.cloud9.md │ ├── README.md │ ├── app.js │ ├── bin │ │ └── create-load.js │ ├── build │ │ └── readme.js │ ├── config.js │ ├── data-sources │ │ ├── db.js │ │ └── rest-geocode.js │ ├── models │ │ ├── car.js │ │ ├── car.json │ │ ├── customer.js │ │ ├── customer.json │ │ ├── inventory.js │ │ ├── inventory.json │ │ ├── location.js │ │ ├── location.json │ │ ├── note.js │ │ └── note.json │ ├── package.json │ ├── public │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── code.css │ │ │ └── main.css │ │ ├── fonts │ │ │ ├── 0ihfXUL2emPh0ROJezvraLO3LdcAZYWl9Si6vvxL-qU.woff │ │ │ ├── OsJ2DjdpjqFRVUSto6IffLO3LdcAZYWl9Si6vvxL-qU.woff │ │ │ └── _aijTyevf54tkVDLy-dlnLO3LdcAZYWl9Si6vvxL-qU.woff │ │ ├── index.html │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-scrollTo.js │ │ │ ├── jquery.min.js │ │ │ └── main.js │ ├── test-data │ │ ├── cars.json │ │ ├── customers.json │ │ ├── discover.js │ │ ├── generate-inventory.js │ │ ├── import.js │ │ ├── inventory.json │ │ ├── locations.json │ │ ├── oracle-tables.sql │ │ └── updatedb.js │ └── test │ │ ├── rest.js │ │ └── support.js └── zero-dependency │ ├── index.js │ └── package.json ├── test-basic.sh ├── test-build-bundle-scripts.js ├── test-build-install-nodeps.js ├── test-build-install.js ├── test-build-pack.js ├── test-build-scripts.js ├── test-script-only.js └── test-usage.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/CHANGES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/README.md -------------------------------------------------------------------------------- /bin/sl-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/bin/sl-build.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/index.js -------------------------------------------------------------------------------- /lib/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/lib/git.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/package.json -------------------------------------------------------------------------------- /sl-build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/sl-build.txt -------------------------------------------------------------------------------- /test/build-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/build-example.js -------------------------------------------------------------------------------- /test/fixtures/suite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/.gitignore -------------------------------------------------------------------------------- /test/fixtures/suite/.jshintignore: -------------------------------------------------------------------------------- 1 | public/explorer/lib/underscore-min.js 2 | node_modules 3 | -------------------------------------------------------------------------------- /test/fixtures/suite/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/.jshintrc -------------------------------------------------------------------------------- /test/fixtures/suite/.loopbackrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/.loopbackrc -------------------------------------------------------------------------------- /test/fixtures/suite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/LICENSE -------------------------------------------------------------------------------- /test/fixtures/suite/README.cloud9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/README.cloud9.md -------------------------------------------------------------------------------- /test/fixtures/suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/README.md -------------------------------------------------------------------------------- /test/fixtures/suite/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/app.js -------------------------------------------------------------------------------- /test/fixtures/suite/bin/create-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/bin/create-load.js -------------------------------------------------------------------------------- /test/fixtures/suite/build/readme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/build/readme.js -------------------------------------------------------------------------------- /test/fixtures/suite/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/config.js -------------------------------------------------------------------------------- /test/fixtures/suite/data-sources/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/data-sources/db.js -------------------------------------------------------------------------------- /test/fixtures/suite/data-sources/rest-geocode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/data-sources/rest-geocode.js -------------------------------------------------------------------------------- /test/fixtures/suite/models/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/car.js -------------------------------------------------------------------------------- /test/fixtures/suite/models/car.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/car.json -------------------------------------------------------------------------------- /test/fixtures/suite/models/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/customer.js -------------------------------------------------------------------------------- /test/fixtures/suite/models/customer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/customer.json -------------------------------------------------------------------------------- /test/fixtures/suite/models/inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/inventory.js -------------------------------------------------------------------------------- /test/fixtures/suite/models/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/inventory.json -------------------------------------------------------------------------------- /test/fixtures/suite/models/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/location.js -------------------------------------------------------------------------------- /test/fixtures/suite/models/location.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/location.json -------------------------------------------------------------------------------- /test/fixtures/suite/models/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/note.js -------------------------------------------------------------------------------- /test/fixtures/suite/models/note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/models/note.json -------------------------------------------------------------------------------- /test/fixtures/suite/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/package.json -------------------------------------------------------------------------------- /test/fixtures/suite/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /test/fixtures/suite/public/css/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/css/code.css -------------------------------------------------------------------------------- /test/fixtures/suite/public/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/css/main.css -------------------------------------------------------------------------------- /test/fixtures/suite/public/fonts/0ihfXUL2emPh0ROJezvraLO3LdcAZYWl9Si6vvxL-qU.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/fonts/0ihfXUL2emPh0ROJezvraLO3LdcAZYWl9Si6vvxL-qU.woff -------------------------------------------------------------------------------- /test/fixtures/suite/public/fonts/OsJ2DjdpjqFRVUSto6IffLO3LdcAZYWl9Si6vvxL-qU.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/fonts/OsJ2DjdpjqFRVUSto6IffLO3LdcAZYWl9Si6vvxL-qU.woff -------------------------------------------------------------------------------- /test/fixtures/suite/public/fonts/_aijTyevf54tkVDLy-dlnLO3LdcAZYWl9Si6vvxL-qU.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/fonts/_aijTyevf54tkVDLy-dlnLO3LdcAZYWl9Si6vvxL-qU.woff -------------------------------------------------------------------------------- /test/fixtures/suite/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/index.html -------------------------------------------------------------------------------- /test/fixtures/suite/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /test/fixtures/suite/public/js/jquery-scrollTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/js/jquery-scrollTo.js -------------------------------------------------------------------------------- /test/fixtures/suite/public/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/js/jquery.min.js -------------------------------------------------------------------------------- /test/fixtures/suite/public/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/public/js/main.js -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/cars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/cars.json -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/customers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/customers.json -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/discover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/discover.js -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/generate-inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/generate-inventory.js -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/import.js -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/inventory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/inventory.json -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/locations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/locations.json -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/oracle-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/oracle-tables.sql -------------------------------------------------------------------------------- /test/fixtures/suite/test-data/updatedb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test-data/updatedb.js -------------------------------------------------------------------------------- /test/fixtures/suite/test/rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test/rest.js -------------------------------------------------------------------------------- /test/fixtures/suite/test/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/suite/test/support.js -------------------------------------------------------------------------------- /test/fixtures/zero-dependency/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/zero-dependency/index.js -------------------------------------------------------------------------------- /test/fixtures/zero-dependency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/fixtures/zero-dependency/package.json -------------------------------------------------------------------------------- /test/test-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-basic.sh -------------------------------------------------------------------------------- /test/test-build-bundle-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-build-bundle-scripts.js -------------------------------------------------------------------------------- /test/test-build-install-nodeps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-build-install-nodeps.js -------------------------------------------------------------------------------- /test/test-build-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-build-install.js -------------------------------------------------------------------------------- /test/test-build-pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-build-pack.js -------------------------------------------------------------------------------- /test/test-build-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-build-scripts.js -------------------------------------------------------------------------------- /test/test-script-only.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-script-only.js -------------------------------------------------------------------------------- /test/test-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongloop/strong-build/HEAD/test/test-usage.js --------------------------------------------------------------------------------