UNPKG

bali-component-framework

Version:

This library provides a JavaScript based implementation of the Bali Nebula™ Component Framework.

23 lines (19 loc) 1.29 kB
/************************************************************************ * Copyright (c) Crater Dog Technologies(TM). All Rights Reserved. * ************************************************************************ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * * * This code is free software; you can redistribute it and/or modify it * * under the terms of The MIT License (MIT), as published by the Open * * Source Initiative. (See http://opensource.org/licenses/MIT) * ************************************************************************/ 'use strict'; const abstractions = require('../abstractions'); // force these to load completely const grammar = require('../grammar'); exports.BDNFormatter = require('./BDNFormatter').BDNFormatter; exports.CanonicalComparator = require('./CanonicalComparator').CanonicalComparator; exports.DeepDuplicator = require('./DeepDuplicator').DeepDuplicator; exports.HTMLFormatter = require('./HTMLFormatter').HTMLFormatter; exports.MergeSorter = require('./MergeSorter').MergeSorter; // NOTE: Can't include the BDNParser module since it depends on all components // and that would result in serious circular dependencies!