Skip to content

Commit f7aa2fb

Browse files
authored
Core/update dependencies (#10)
* Updated dependencies * Updated ignore file to support .parcel-cache * Removed postcss RC file * Added type="module" to main script on index.html
1 parent c08ff03 commit f7aa2fb

File tree

4 files changed

+10
-14
lines changed

4 files changed

+10
-14
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
/node_modules
22
/dist
3-
.cache
3+
.parcel-cache

.postcssrc

-5
This file was deleted.

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<h1>This is Fast.</h1>
2020
<img src="favicon.png" alt="Fast logo" />
2121
</section>
22-
<script src="index.js"></script>
22+
<script type="module" src="index.js"></script>
2323

2424
<!-- Google Analytics: change UA-XXXXX-Y to be your ID. -->
2525
<script>

package.json

+8-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "fast",
33
"version": "1.0.2",
44
"description": "Develop, build, deploy, redeploy, and teardown frontend projects fast ⚡️",
5-
"main": "index.js",
65
"scripts": {
76
"start": "parcel -p 3000 index.html",
87
"serve": "\"$npm_execpath\" start --open",
@@ -28,13 +27,15 @@
2827
"maintained node versions"
2928
],
3029
"devDependencies": {
31-
"autoprefixer": "^9.8.6",
32-
"normalize.css": "^8.0.1",
33-
"parcel-bundler": "^1.12.4",
30+
"@parcel/transformer-sass": "2.4.1",
31+
"autoprefixer": "^10.4.4",
32+
"parcel": "^2.4.1",
3433
"parcel-plugin-clean-dist": "^0.0.6",
3534
"postcss": "^8.1.0",
36-
"sass": "^1.26.11",
37-
"surge": "^0.21.6"
35+
"sass": "^1.49.11",
36+
"surge": "^0.23.1"
3837
},
39-
"dependencies": {}
38+
"dependencies": {
39+
"normalize.css": "^8.0.1"
40+
}
4041
}

0 commit comments

Comments
 (0)