mirror of
https://github.com/sartography/bpmn-js.git
synced 2025-01-10 09:05:58 +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 }.
6 lines
91 B
JavaScript
6 lines
91 B
JavaScript
module.exports = {
|
|
__depends__: [
|
|
require('../draw'),
|
|
require('../import')
|
|
]
|
|
}; |