mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-13 02:24:31 +00:00
c58532aeac
This commit puts all import related stuff into the import module. The core module remains as an entry point to require the basic modules needed by bpmn-js. At the time this is { import, draw }.
9 lines
288 B
JavaScript
9 lines
288 B
JavaScript
module.exports = {
|
|
__depends__: [
|
|
require('diagram-js/lib/command'),
|
|
require('diagram-js/lib/features/change-support'),
|
|
require('diagram-js-direct-editing')
|
|
],
|
|
__init__: [ 'labelEditingProvider' ],
|
|
labelEditingProvider: [ 'type', require('./LabelEditingProvider') ]
|
|
}; |