Skip to content

Commit

Permalink
bump parcel
Browse files Browse the repository at this point in the history
  • Loading branch information
fkhadra committed Feb 14, 2022
1 parent be823dd commit 156d18d
Show file tree
Hide file tree
Showing 5 changed files with 1,314 additions and 5,238 deletions.
3 changes: 2 additions & 1 deletion example/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
.cache
dist
dist
.parcel-cache
8 changes: 8 additions & 0 deletions example/.parcelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "@parcel/config-default",
"transformers": {
"*.{ts,tsx}": [
"@parcel/transformer-typescript-tsc"
]
}
}
2 changes: 1 addition & 1 deletion example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@

<body>
<div id="root"></div>
<script src="./index.tsx"></script>
<script type="module" src="./index.tsx"></script>
</body>
</html>
21 changes: 11 additions & 10 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"start": "parcel index.html",
"build": "parcel build index.html"
},
"dependencies": {
"react-app-polyfill": "^1.0.0",
"react-app-polyfill": "^3.0.0",
"styled-components": "^5.1.0"
},
"alias": {
Expand All @@ -17,14 +18,14 @@
"scheduler/tracing": "../node_modules/scheduler/tracing-profiling"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-react": "^7.8.3",
"@types/react": "^16.9.11",
"@types/react-dom": "^16.8.4",
"@types/styled-components": "^5.0.1",
"parcel": "^1.12.3",
"sass": "^1.25.0",
"typescript": "^3.4.5"
"@parcel/config-default": "^2.3.1",
"@parcel/transformer-sass": "2.3.1",
"@parcel/transformer-typescript-tsc": "^2.3.1",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.22",
"parcel": "^2.3.1",
"sass": "^1.49.7",
"typescript": "^4.5.5"
}
}
Loading

0 comments on commit 156d18d

Please sign in to comment.