Skip to content

Commit f81df34

Browse files
committed
version 3.14.1 snapshot
1 parent 09683d9 commit f81df34

File tree

1,635 files changed

+7759
-7501
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,635 files changed

+7759
-7501
lines changed

bare-cypress-eslint/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview",
10+
"prepare": "cypress install",
1011
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
1112
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
1213
"test:unit": "cypress run --component",
@@ -19,12 +20,12 @@
1920
"devDependencies": {
2021
"@eslint/js": "^9.18.0",
2122
"@vitejs/plugin-vue": "^5.2.1",
22-
"cypress": "^14.0.0",
23+
"cypress": "^14.0.1",
2324
"eslint": "^9.18.0",
2425
"eslint-plugin-cypress": "^4.1.0",
2526
"eslint-plugin-vue": "^9.32.0",
2627
"start-server-and-test": "^2.0.10",
2728
"vite": "^6.0.11",
28-
"vite-plugin-vue-devtools": "^7.7.0"
29+
"vite-plugin-vue-devtools": "^7.7.1"
2930
}
3031
}

bare-cypress-eslint/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup></script>
22

33
<template>
4-
<h1>Hello World</h1>
4+
<h1>You did it!</h1>
55
</template>
66

77
<style scoped></style>

bare-cypress-eslint/src/__tests__/App.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import App from '../App.vue'
33
describe('App', () => {
44
it('mounts and renders properly', () => {
55
cy.mount(App)
6-
cy.get('h1').should('contain', 'Hello World')
6+
cy.get('h1').should('contain', 'You did it!')
77
})
88
})

bare-cypress/package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"dev": "vite",
88
"build": "vite build",
99
"preview": "vite preview",
10+
"prepare": "cypress install",
1011
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
1112
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
1213
"test:unit": "cypress run --component",
@@ -17,9 +18,9 @@
1718
},
1819
"devDependencies": {
1920
"@vitejs/plugin-vue": "^5.2.1",
20-
"cypress": "^14.0.0",
21+
"cypress": "^14.0.1",
2122
"start-server-and-test": "^2.0.10",
2223
"vite": "^6.0.11",
23-
"vite-plugin-vue-devtools": "^7.7.0"
24+
"vite-plugin-vue-devtools": "^7.7.1"
2425
}
2526
}

bare-cypress/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup></script>
22

33
<template>
4-
<h1>Hello World</h1>
4+
<h1>You did it!</h1>
55
</template>
66

77
<style scoped></style>

bare-cypress/src/__tests__/App.cy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ import App from '../App.vue'
33
describe('App', () => {
44
it('mounts and renders properly', () => {
55
cy.mount(App)
6-
cy.get('h1').should('contain', 'Hello World')
6+
cy.get('h1').should('contain', 'You did it!')
77
})
88
})

bare-default/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
"devDependencies": {
1515
"@vitejs/plugin-vue": "^5.2.1",
1616
"vite": "^6.0.11",
17-
"vite-plugin-vue-devtools": "^7.7.0"
17+
"vite-plugin-vue-devtools": "^7.7.1"
1818
}
1919
}

bare-default/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup></script>
22

33
<template>
4-
<h1>Hello World</h1>
4+
<h1>You did it!</h1>
55
</template>
66

77
<style scoped></style>

bare-eslint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
"eslint": "^9.18.0",
1919
"eslint-plugin-vue": "^9.32.0",
2020
"vite": "^6.0.11",
21-
"vite-plugin-vue-devtools": "^7.7.0"
21+
"vite-plugin-vue-devtools": "^7.7.1"
2222
}
2323
}

bare-eslint/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup></script>
22

33
<template>
4-
<h1>Hello World</h1>
4+
<h1>You did it!</h1>
55
</template>
66

77
<style scoped></style>

0 commit comments

Comments
 (0)