{"library":"start-babel","title":"start-babel","type":"library","description":"Babel task for the Start task runner. Current stable version is 3.0.0 (released 2017-01-07). It integrates Babel transpilation into Start pipelines, supporting SourceMaps and configurable Babel options. Key differentiator: it operates on `[{ path, data, map }]` streams, making it compatible with Start's file-based flow. For newer Node versions, Babel 7+, or non-Start setups, consider using core Babel APIs or other runners like Gulp or Webpack.","language":"javascript","status":"maintenance","last_verified":"Sat Apr 25","install":{"commands":["npm install start-babel"],"cli":null},"imports":["import babel from 'start-babel'","import babel from 'start-babel'","import * as startBabel from 'start-babel'; startBabel.default(options)"],"auth":{"required":false,"env_vars":[]},"links":{"homepage":null,"github":"https://github.com/start-runner/babel","docs":null,"changelog":null,"pypi":null,"npm":"https://www.npmjs.com/package/start-babel","openapi_spec":null,"status_page":null,"smithery":null},"quickstart":{"code":"import Start from 'start';\nimport reporter from 'start-pretty-reporter';\nimport files from 'start-files';\nimport clean from 'start-clean';\nimport read from 'start-read';\nimport babel from 'start-babel';\nimport write from 'start-write';\n\nconst start = Start(reporter());\n\nexport const build = () => start(\n  files('build/'),\n  clean(),\n  files('src/**/*.js'),\n  read(),\n  babel({ sourceMaps: true }),\n  write('build/')\n);","lang":"javascript","description":"Shows a basic build pipeline using start-babel: clean target, read source files, transpile with source maps, write output.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}