Skip to content

Commit e87b3f3

Browse files
committed
tests
1 parent 0c39f16 commit e87b3f3

File tree

8 files changed

+512
-12
lines changed

8 files changed

+512
-12
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
dist
22
node_modules
33
TODOs.md
4+
temp

package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"scripts": {
2020
"dev": "unbuild --stub",
2121
"build": "unbuild && esno scripts/patchCJS.ts",
22+
"test": "vitest run",
2223
"release": "node scripts/release.js",
2324
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
2425
},
@@ -45,17 +46,19 @@
4546
"enquirer": "^2.3.6",
4647
"esno": "^0.16.3",
4748
"execa": "^4.1.0",
49+
"fs-extra": "^10.1.0",
4850
"hash-sum": "^2.0.0",
4951
"minimist": "^1.2.6",
5052
"picocolors": "^1.0.0",
5153
"prettier": "^2.7.1",
54+
"puppeteer": "^14.4.0",
5255
"rollup": "^2.75.6",
5356
"semver": "^7.3.7",
5457
"slash": "^3.0.0",
5558
"source-map": "^0.6.1",
5659
"unbuild": "^0.7.4",
5760
"vite": "^2.9.12",
5861
"vitest": "^0.15.1",
59-
"vue": "^2.7.0-beta.1"
62+
"vue": "^2.7.0-beta.2"
6063
}
6164
}

playground/ScriptSetup.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ const vRed = {
1818
<div v-red class="script-setup">
1919
This should be red.
2020
<span class="prop">{{ msg }}</span>
21-
<button @click="count++">Count: {{ count }}</button>
21+
<button @click="count++">{{ count }}</button>
2222
</div>
2323
</template>

0 commit comments

Comments
 (0)