mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 23:36:20 +01:00
* Add preact package * Fix types * update types * fix types * remove dependecies * bump version * improve test setup for react as well * Add workflow for preact * Fix types * bump version * Add white space * remove forward ref * bump package * Fix types * Fix types * bump version * Remove proptypings * Test new version * Add some extra documentation
21 lines
384 B
JavaScript
21 lines
384 B
JavaScript
module.exports = {
|
|
presets: ['@babel/env'],
|
|
// babelrcRoots: ['.', './packages/*'],
|
|
env: {
|
|
test: {
|
|
presets: ['@babel/env'],
|
|
plugins: ['@babel/plugin-transform-runtime'],
|
|
},
|
|
dev: {
|
|
plugins: [
|
|
[
|
|
'transform-inline-environment-variables',
|
|
{
|
|
include: ['NODE_ENV'],
|
|
},
|
|
],
|
|
],
|
|
},
|
|
},
|
|
};
|