Skip to content

abell-v1.0.0-beta.5: Remove node dependencies in Abell runtime to allow abell to run on client-side

Latest
Compare
Choose a tag to compare
@saurabhdaware saurabhdaware released this 06 Nov 15:54
· 2 commits to main since this release
3e2949b

What's Changed

  • feat: remove node dependencies from compiler by @saurabhdaware in #188

    You can now set experimentalAllowClientSide: true which will allow you to import .abell files in client-side code. As the name suggests, this feature is experimental as things like XSS, and other security aspects are not considered so far.

    import { defineConfig } from "abell";
    
    export default defineConfig({
      abell: {
        experimentalAllowClientSide: true
      }
    });

Full Changelog: abell-v1.0.0-beta.4...abell-v1.0.0-beta.5