A shareable configuration for Cozy Applications or Scripts.
This package is a Babel preset already used by create-cozy-app
.
To install:
yarn add --dev babel-preset-cozy-app
If you started your project using create-cozy-app
, you don't need to do anything, you should already have a .babelrc
configured to used this preset.
If you want to use this preset, you first need to have Babel installed (cf documentation).
Then, in a file named .babelrc
(the Babel configuration file), you can use the preset using the following way:
{
"presets": ["cozy-app"]
}
By default, this babel preset targets browsers but you can target node by using the node
option:
{
"presets": [
["cozy-app", {
"node": true
}]
]
}
By default, this babel preset uses the react
preset (babel-preset-react
) but you can disable this behaviour with the react
option to false
as following:
{
"presets": [
["cozy-app", {
"react": false
}]
]
}
By default, this babel preset uses babel-plugin-transform-runtime
to transform regenerator functions on the runtime. But sometimes (not always) it could break CSPs due to some eval usage so you can disable this behaviour with the transformRegenerator
option to false
as following:
{
"presets": [
["cozy-app", {
"transformRegenerator": false
}]
]
}
When the lib option is activated, import/export
nodes are not transpiled. This gives the downstream bundler
the ability to prune unused module away. It works by configuring babel-preset-env with {"modules": false}
.
You can have control on the options passed to babel-preset-env
and babel-plugin-transform-runtime
:
presetEnv
will be passed tobabel-preset-env
transformRuntime
will be passed tobabel-plugin-transform-runtime
{
"presets": [
["cozy-app", {
"presetEnv": { "modules": false },
"transformRuntime": { "helpers": true }
}]
]
}
In this case, we do not want preset-env
to touch to import/export
and want the inlined Babel helpers
to be replaced by imports from babel-runtime
.
See the options on the official docs :
https://babeljs.io/docs/en/babel-preset-env#modules https://babeljs.io/docs/en/babel-plugin-transform-runtime#helpers
Cozy is a platform that brings all your web services in the same private space. With it, your webapps and your devices can share data easily, providing you with a new experience. You can install Cozy on your own hardware where no one's tracking you.
You can reach the Cozy Community by:
- Chatting with us on IRC #cozycloud on Libera.Chat
- Posting on our Forum
- Posting issues on the Github repos
- Say Hi! on Twitter
babel-preset-cozy-app
is distributed under the MIT license.