Compare commits

...

4 Commits

Author SHA1 Message Date
754da58a68 v0.7.3 2021-03-31 10:41:12 +02:00
3b314d5307 Fixed missing global file
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-03-31 10:40:45 +02:00
4a55f00ff0 v0.7.2 2021-03-31 10:17:23 +02:00
d30ae95a0d Fixed everything :D
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-03-31 10:16:46 +02:00
3 changed files with 5 additions and 3 deletions

View File

@ -1,8 +1,8 @@
{
"name": "@dzeio/components",
"version": "0.7.1",
"version": "0.7.3",
"license": "MIT",
"main": "./index.mjs",
"main": "./index.js",
"types": "./types/index.d.ts",
"devDependencies": {
"@babel/core": "^7.12.16",

View File

@ -19,7 +19,7 @@ export default [
output: [
{
file: pkg.main,
format: 'es',
format: 'cjs',
assetFileNames: 'style.css'
}
]

View File

@ -4,6 +4,8 @@
* @summary DZEIO Component Library
*/
import './dzeio/general.styl'
import Box from './dzeio/Box'
import Button from './dzeio/Button'
import Checkbox from './dzeio/Checkbox'