Skip to content

Commit 47cb7de

Browse files
author
Wickramaranga Abeygunawardhana
authored
Merge pull request #55 from umstek/upgrade/october
Upgrade to use production version of parcel 2
2 parents 521b8e2 + 30c8b9b commit 47cb7de

File tree

4 files changed

+1546
-3360
lines changed

4 files changed

+1546
-3360
lines changed

package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"name": "parcel-typescript-react-tailwind",
3-
"version": "1.0.2",
4-
"main": "dist/index.html",
3+
"version": "2.0.0",
54
"license": "MIT",
65
"description": "Trying-out Tailwind CSS with Parcel",
76
"scripts": {
@@ -10,13 +9,13 @@
109
"clean": "rm -rf .parcel-cache dist"
1110
},
1211
"devDependencies": {
13-
"@parcel/transformer-image": "2.0.0-beta.2",
14-
"@types/react": "17.0.13",
15-
"@types/react-dom": "17.0.8",
16-
"autoprefixer": "10.2.6",
17-
"parcel": "2.0.0-beta.2",
18-
"postcss": "8.3.5",
19-
"typescript": "4.3.5"
12+
"@parcel/transformer-image": "2.0.0",
13+
"@types/react": "17.0.30",
14+
"@types/react-dom": "17.0.9",
15+
"autoprefixer": "10.3.7",
16+
"parcel": "2.0.0",
17+
"postcss": "8.3.9",
18+
"typescript": "4.4.4"
2019
},
2120
"dependencies": {
2221
"postcss-import": "^14.0.1",

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Trying-out Tailwind CSS with Parcel
22

3-
A few months ago, I was searching for a UI kit to use in one of my hobby react apps. I found some good-looking React UI kits like [Ant Design](http://ant.design), [BlueprintJS](https://blueprintjs.com) and [Evergreen](https://evergreen.segment.com) but sometimes the bloat becomes unbearable and customizability becomes a priority. [Material UI](https://material-ui.com) is said to be the most popular one, but, no thanks; not a fan of material UI. Anyway, the discussion on available react UI kits is a topic for a different post. Here what happened was that I tried to create my own UI kit with SASS and soon found out that there is a gap between my idea on how the components should look and my knowledge on how to use CSS properly.
3+
Some years ago, I was searching for a UI kit to use in one of my hobby react apps. I found some good-looking React UI kits like [Ant Design](http://ant.design), [BlueprintJS](https://blueprintjs.com) and [Evergreen](https://evergreen.segment.com) but sometimes the bloat becomes unbearable and customizability becomes a priority. [Material UI](https://material-ui.com) is said to be the most popular one, but, no thanks; not a fan of material UI. Anyway, the discussion on available react UI kits is a topic for a different post. Here what happened was that I tried to create my own UI kit with SASS and soon found out that there is a gap between my idea on how the components should look and my knowledge on how to use CSS properly.
44

55
# What is Tailwind CSS?
66

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
</head>
99
<body>
1010
<div id="app"></div>
11-
<script src="./main.ts"></script>
11+
<script type="module" src="./main.ts"></script>
1212
</body>
1313
</html>

0 commit comments

Comments
 (0)