Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .babelrc

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ dist/

# misc
.cache
.parcel-cache
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The parcel cache directory has changed from .cache to .parcel-cache.

https://parceljs.org/getting-started/migration/#cache-location

I've kept the old one around in yarn build-clean and in .gitignore so that users who have already cloned this repo won't run into issues.

.DS_Store
.env.local
.env.development.local
Expand All @@ -16,4 +17,4 @@ dist/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea
.idea
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
</head>
<body>
<div id="root"></div>
<script src="./src/index.js"></script>
<script type="module" src="./src/index.js"></script>
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

</body>
</html>
Loading