You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We initially added a few gulp tasks with browserify to make it easy to get started with airkit but it's not easy to maintain that sort of dependency since the javascript build ecosystem changes so fast year over year. Instead, we should provide example docs on how to set up airkit using common systems like webpack, etc., or just let new projects figure out how to integrate airkit into their systems.
At the minimum, we just need to be able to import airkit modules using ES6 module syntax, e.g. import {Modal} from 'airkit/modal'. Build systems can transpile ES6 module syntax to AMD or CommonJS or whatever.
The text was updated successfully, but these errors were encountered:
We initially added a few
gulp
tasks withbrowserify
to make it easy to get started withairkit
but it's not easy to maintain that sort of dependency since the javascript build ecosystem changes so fast year over year. Instead, we should provide example docs on how to set upairkit
using common systems likewebpack
, etc., or just let new projects figure out how to integrateairkit
into their systems.At the minimum, we just need to be able to import
airkit
modules using ES6 module syntax, e.g.import {Modal} from 'airkit/modal'
. Build systems can transpile ES6 module syntax to AMD or CommonJS or whatever.The text was updated successfully, but these errors were encountered: