├── .eslintrc ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── circle.yml ├── lib ├── changed.js └── index.js ├── package.json └── test ├── .eslintrc ├── fixtures └── simple-app │ ├── common │ └── models │ │ ├── person.js │ │ └── person.json │ └── server │ ├── config.json │ ├── datasources.json │ ├── datasources.local.js │ ├── middleware.json │ ├── model-config.json │ └── server.js └── test.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea 3 | .nyc_output/ 4 | coverage 5 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-exact=true 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/changed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/lib/changed.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "fullcube/mocha" 3 | } 4 | -------------------------------------------------------------------------------- /test/fixtures/simple-app/common/models/person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/common/models/person.js -------------------------------------------------------------------------------- /test/fixtures/simple-app/common/models/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/common/models/person.json -------------------------------------------------------------------------------- /test/fixtures/simple-app/server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/server/config.json -------------------------------------------------------------------------------- /test/fixtures/simple-app/server/datasources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/server/datasources.json -------------------------------------------------------------------------------- /test/fixtures/simple-app/server/datasources.local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/server/datasources.local.js -------------------------------------------------------------------------------- /test/fixtures/simple-app/server/middleware.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/server/middleware.json -------------------------------------------------------------------------------- /test/fixtures/simple-app/server/model-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/server/model-config.json -------------------------------------------------------------------------------- /test/fixtures/simple-app/server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/fixtures/simple-app/server/server.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fullcube/loopback-ds-changed-mixin/HEAD/test/test.js --------------------------------------------------------------------------------