Skip to content
This repository has been archived by the owner on Apr 14, 2020. It is now read-only.

Commit

Permalink
chore: rename es6 to esm
Browse files Browse the repository at this point in the history
  • Loading branch information
itsdouges committed Feb 19, 2019
1 parent f51129b commit 9983f9e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Binary file removed icon.png
Binary file not shown.
6 changes: 3 additions & 3 deletions packages/yubaba/package.json
Expand Up @@ -5,7 +5,7 @@
"author": "Michael Dougall",
"license": "MIT",
"main": "dist/cjs/packages/yubaba/src/index.js",
"module": "dist/es6/packages/yubaba/src/index.js",
"module": "dist/esm/packages/yubaba/src/index.js",
"sideEffects": false,
"description": "is an element animation orchestrator for React.js ✨",
"keywords": [
Expand All @@ -19,13 +19,13 @@
"material-transition"
],
"scripts": {
"build": "rm -rf dist && tsc -p ./tsconfig.cjs.json && tsc -p ./tsconfig.es6.json && cp ../../README.md README.md",
"build": "rm -rf dist && tsc -p ./tsconfig.cjs.json && tsc -p ./tsconfig.esm.json && cp ../../README.md README.md",
"size": "size-limit"
},
"size-limit": [
{
"limit": "5.7 KB",
"path": "dist/es6/packages/yubaba/src/index.js"
"path": "dist/esm/packages/yubaba/src/index.js"
}
],
"peerDependencies": {
Expand Down
@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist/es6",
"outDir": "./dist/esm",
"module": "esnext",
"declaration": true
}
Expand Down

0 comments on commit 9983f9e

Please sign in to comment.