JSPM

yo-yoify-standalone

0.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q14093F
  • License MIT

Simple wrapper around yo-yoify transform that lets you run it without Browserify

Package Exports

  • yo-yoify-standalone

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (yo-yoify-standalone) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

yo-yoify-standalone

Useful when you want to use yo-yoify to

transform choo, yo-yo, or bel template strings into pure and fast document calls.

but can’t, or don’t want to, use browserify.

See also: https://github.com/goto-bus-stop/babel-plugin-yo-yoify

Usage

CLI

npm install yo-yoify-standalone --global

cat src/file.js | ./yoyoify-standalone.js > lib.yoyoified/file.js

In a module

npm install yo-yoify-standalone --save
var yoyoify = require('yo-yoify-standalone')
yoyoify('src/script.js', 'dist/script.js')