Skip to content

Commit 2329e18

Browse files
update parcel
1 parent c27a927 commit 2329e18

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ coverage/
55
.nyc_output/
66
dist/
77
.cache/
8+
.parcel-cache/
89
.vscode/
910
cypress-coverage/
1011
yarn.lock

package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
"name": "@cypress/code-coverage",
33
"version": "0.0.0-development",
44
"description": "Saves the code coverage collected during Cypress tests",
5-
"main": "index.js",
65
"scripts": {
76
"start": "parcel serve cypress/index.html",
87
"coverage:verify": "npx nyc report --check-coverage true --lines 80",
@@ -73,7 +72,7 @@
7372
"express": "^4.18.2",
7473
"lodash": "4.17.21",
7574
"markdown-link-check": "3.12.1",
76-
"parcel-bundler": "1.12.5",
75+
"parcel": "2.12.0",
7776
"prettier": "3.2.5",
7877
"rimraf": "5.0.5",
7978
"semantic-release": "17.4.7",

test-apps/frontend/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
</nav>
55
<h2>Test page</h2>
66
<p>Open the DevTools to see console messages</p>
7-
<script src="app.js"></script>
7+
<script type="module" src="app.js"></script>
88
</body>

test-apps/redirect/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<body>
22
<h2>Test page</h2>
3-
<script src="app.js"></script>
3+
<script type="module" src="app.js"></script>
44
</body>

0 commit comments

Comments
 (0)