![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
babel-plugin-vdux-transform
Advanced tools
Babel plugin to instrument vdux components with custom transforms
Forked from the excellent babel-plugin-react-transform. Does the same thing but works with components that aren't passed to any sort of constructor (e.g. React.createClass
) so that it can be used with vdux and other things like deku.
This plugin doesn't do anything on its own, it just enables you to write transforms for your components. You apply those transforms like this:
{
"plugins": [
["vdux-transform", {
"transforms": [{
// can be an NPM module name or a local path
"transform": "vdux-transform-hmr"
}, {
// can be an NPM module name or a local path
"transform": "./src/my-custom-transform"
}]
}]
]
}
A trivial transform to add displayName's to components looks like this:
function transform (opts) {
return (component) => {
const parts = opts.filename.split('/')
const file = parts[parts.length - 1]
const name = file.slice(0, file.indexOf('.'))
const displayName = name[0].toUpperCase() + name.slice(1)
return {
displayName,
...component,
}
}
}
You may also specify an hoc
config option which allows you to specify which functions return higher-order components (an example would be vdux-summon):
{
"plugins": [
["vdux-transform", {
"hoc": ["summon"],
"transforms": [{
"transform": "vdux-transform-hmr"
}]
}]
]
}
FAQs
Babel plugin to instrument vdux components with custom transforms
The npm package babel-plugin-vdux-transform receives a total of 0 weekly downloads. As such, babel-plugin-vdux-transform popularity was classified as not popular.
We found that babel-plugin-vdux-transform demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.