Skip to content

Commit aa5e780

Browse files
Fix out of date dependencies
1 parent a1e519d commit aa5e780

File tree

5 files changed

+4136
-1624
lines changed

5 files changed

+4136
-1624
lines changed

.npmignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Philip Bordallo
3+
Copyright (c) 2018-present Philip Bordallo
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

configs/rollup.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const babel = require('rollup-plugin-babel');
33
module.exports = {
44
input: 'src/index.js',
55
output: [
6-
{ file: './dist/index.cjs.js', format: 'cjs' },
7-
{ file: './dist/index.es.js', format: 'es' },
6+
{ file: './dist/index.cjs.js', format: 'cjs', exports: 'default' },
7+
{ file: './dist/index.es.js', format: 'es', exports: 'default' },
88
],
99
plugins: [
1010
babel(),

0 commit comments

Comments
 (0)