gulp-aum-export

raw JSON →
0.0.2 verified Fri May 01 auth: no javascript

A Gulp plugin for transpiling Aum particle exports as part of an Aum MVC workflow. At version 0.0.2, this package is in early development with an experimental release cadence. It differentiates by targeting the niche Aum framework, providing a build-step integration for Gulp-based pipelines. No stable releases, sparse documentation, and likely limited adoption.

error Cannot find module 'gulp-aum-export'
cause Package not installed or not in node_modules.
fix
Run npm install gulp-aum-export.
error TypeError: aumExport is not a function
cause Incorrect import style or missing default export.
fix
Use const aumExport = require('gulp-aum-export'); as shown.
gotcha Package version 0.0.2 is extremely early; API may break without notice.
fix Pin to exact version and expect frequent updates.
deprecated No documentation provided; use at own risk.
fix Check Aum framework documentation or source code.
gotcha Aum framework is obscure; interop with other Gulp plugins might require custom configuration.
fix Test thoroughly with your Aum versions.
npm install gulp-aum-export
yarn add gulp-aum-export
pnpm add gulp-aum-export

This shows a basic Gulp task that transpiles Aum particle files using gulp-aum-export.

const gulp = require('gulp');
const aumExport = require('gulp-aum-export');

gulp.task('export-aum', function() {
  return gulp.src('src/**/*.aum')
    .pipe(aumExport({/* options */}))
    .pipe(gulp.dest('dist'));
});