lb3-excellerify-crudgrid-mixin
Advanced tools
Comparing version 0.1.6 to 0.1.7
import debug from 'debug'; | ||
export default (name = 'soft-delete') => debug(`loopback:mixins:${name}`); | ||
export default (name = 'crud-grid') => debug(`loopback:mixins:${name}`); |
import { deprecate } from 'util'; | ||
import formGrid from './formGrid'; | ||
import crudGrid from './crudGrid'; | ||
export default deprecate((app) => { | ||
app.loopback.modelBuilder.mixins.define('FormGrid', formGrid); | ||
app.loopback.modelBuilder.mixins.define('CrudGrid', CrudGrid); | ||
}, 'DEPRECATED: Use mixinSources, see https://github.com/excellerify/lb3-excellerify-crudgrid-mixin'); | ||
module.exports = exports.default; |
{ | ||
"name": "lb3-excellerify-crudgrid-mixin", | ||
"version": "0.1.6", | ||
"version": "0.1.7", | ||
"description": "loopback 3 excellerify CRUD Grid endpoint and schema resolver", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4991