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

+3-2
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

+1-1
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

+1-1
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

+3-2
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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-jsx-cypress-eslint/package.json

+3-2
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",
@@ -20,12 +21,12 @@
2021
"@eslint/js": "^9.18.0",
2122
"@vitejs/plugin-vue": "^5.2.1",
2223
"@vitejs/plugin-vue-jsx": "^4.1.1",
23-
"cypress": "^14.0.0",
24+
"cypress": "^14.0.1",
2425
"eslint": "^9.18.0",
2526
"eslint-plugin-cypress": "^4.1.0",
2627
"eslint-plugin-vue": "^9.32.0",
2728
"start-server-and-test": "^2.0.10",
2829
"vite": "^6.0.11",
29-
"vite-plugin-vue-devtools": "^7.7.0"
30+
"vite-plugin-vue-devtools": "^7.7.1"
3031
}
3132
}

bare-jsx-cypress-eslint/src/App.vue

+1-1
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-jsx-cypress-eslint/src/__tests__/App.cy.js

+1-1
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-jsx-cypress/package.json

+3-2
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",
@@ -18,9 +19,9 @@
1819
"devDependencies": {
1920
"@vitejs/plugin-vue": "^5.2.1",
2021
"@vitejs/plugin-vue-jsx": "^4.1.1",
21-
"cypress": "^14.0.0",
22+
"cypress": "^14.0.1",
2223
"start-server-and-test": "^2.0.10",
2324
"vite": "^6.0.11",
24-
"vite-plugin-vue-devtools": "^7.7.0"
25+
"vite-plugin-vue-devtools": "^7.7.1"
2526
}
2627
}

bare-jsx-cypress/src/App.vue

+1-1
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-jsx-cypress/src/__tests__/App.cy.js

+1-1
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-jsx-eslint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
"eslint": "^9.18.0",
2020
"eslint-plugin-vue": "^9.32.0",
2121
"vite": "^6.0.11",
22-
"vite-plugin-vue-devtools": "^7.7.0"
22+
"vite-plugin-vue-devtools": "^7.7.1"
2323
}
2424
}

bare-jsx-eslint/src/App.vue

+1-1
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-jsx-nightwatch-eslint/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ See [Vite Configuration Reference](https://vite.dev/config/).
1414

1515
```sh
1616
pnpm install
17+
pnpm approve-builds # for pnpm 10+
1718
```
1819

1920
### Compile and Hot-Reload for Development

bare-jsx-nightwatch-eslint/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@
2020
"@vitejs/plugin-vue": "^5.2.1",
2121
"@vitejs/plugin-vue-jsx": "^4.1.1",
2222
"@vue/test-utils": "^2.4.6",
23-
"chromedriver": "^132.0.0",
23+
"chromedriver": "^133.0.0",
2424
"eslint": "^9.18.0",
2525
"eslint-plugin-vue": "^9.32.0",
2626
"geckodriver": "^5.0.0",
2727
"nightwatch": "^3.11.0",
2828
"ts-node": "^10.9.2",
2929
"vite": "^6.0.11",
3030
"vite-plugin-nightwatch": "^0.4.6",
31-
"vite-plugin-vue-devtools": "^7.7.0"
31+
"vite-plugin-vue-devtools": "^7.7.1"
3232
}
3333
}
+1-1
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-jsx-nightwatch-eslint/src/__tests__/App.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe('App', function () {
77
const appComponent = await browser.mountComponent('/src/App.vue');
88

99
browser.expect.element(appComponent).to.be.present;
10-
browser.expect.element('h1').text.to.contain('Hello World');
10+
browser.expect.element('h1').text.to.contain('You did it!');
1111
})
1212

1313
after((browser) => browser.end())

bare-jsx-nightwatch-eslint/tests/e2e/example.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ describe('My First Test', function () {
44
})
55

66
it('visits the app root url', function () {
7-
browser.assert.textContains('.green', 'You did it!')
7+
browser.assert.textContains('h1', 'You did it!')
88
})
99

1010
after((browser) => browser.end())

bare-jsx-nightwatch/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ See [Vite Configuration Reference](https://vite.dev/config/).
1414

1515
```sh
1616
pnpm install
17+
pnpm approve-builds # for pnpm 10+
1718
```
1819

1920
### Compile and Hot-Reload for Development

bare-jsx-nightwatch/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
"@vitejs/plugin-vue": "^5.2.1",
1919
"@vitejs/plugin-vue-jsx": "^4.1.1",
2020
"@vue/test-utils": "^2.4.6",
21-
"chromedriver": "^132.0.0",
21+
"chromedriver": "^133.0.0",
2222
"geckodriver": "^5.0.0",
2323
"nightwatch": "^3.11.0",
2424
"ts-node": "^10.9.2",
2525
"vite": "^6.0.11",
2626
"vite-plugin-nightwatch": "^0.4.6",
27-
"vite-plugin-vue-devtools": "^7.7.0"
27+
"vite-plugin-vue-devtools": "^7.7.1"
2828
}
2929
}

bare-jsx-nightwatch/src/App.vue

+1-1
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-jsx-nightwatch/src/__tests__/App.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ describe('App', function () {
77
const appComponent = await browser.mountComponent('/src/App.vue');
88

99
browser.expect.element(appComponent).to.be.present;
10-
browser.expect.element('h1').text.to.contain('Hello World');
10+
browser.expect.element('h1').text.to.contain('You did it!');
1111
})
1212

1313
after((browser) => browser.end())

bare-jsx-nightwatch/tests/e2e/example.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ describe('My First Test', function () {
44
})
55

66
it('visits the app root url', function () {
7-
browser.assert.textContains('.green', 'You did it!')
7+
browser.assert.textContains('h1', 'You did it!')
88
})
99

1010
after((browser) => browser.end())

bare-jsx-pinia-cypress-eslint/package.json

+3-2
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",
@@ -21,12 +22,12 @@
2122
"@eslint/js": "^9.18.0",
2223
"@vitejs/plugin-vue": "^5.2.1",
2324
"@vitejs/plugin-vue-jsx": "^4.1.1",
24-
"cypress": "^14.0.0",
25+
"cypress": "^14.0.1",
2526
"eslint": "^9.18.0",
2627
"eslint-plugin-cypress": "^4.1.0",
2728
"eslint-plugin-vue": "^9.32.0",
2829
"start-server-and-test": "^2.0.10",
2930
"vite": "^6.0.11",
30-
"vite-plugin-vue-devtools": "^7.7.0"
31+
"vite-plugin-vue-devtools": "^7.7.1"
3132
}
3233
}
+1-1
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-jsx-pinia-cypress-eslint/src/__tests__/App.cy.js

+1-1
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-jsx-pinia-cypress/package.json

+3-2
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,9 +20,9 @@
1920
"devDependencies": {
2021
"@vitejs/plugin-vue": "^5.2.1",
2122
"@vitejs/plugin-vue-jsx": "^4.1.1",
22-
"cypress": "^14.0.0",
23+
"cypress": "^14.0.1",
2324
"start-server-and-test": "^2.0.10",
2425
"vite": "^6.0.11",
25-
"vite-plugin-vue-devtools": "^7.7.0"
26+
"vite-plugin-vue-devtools": "^7.7.1"
2627
}
2728
}

bare-jsx-pinia-cypress/src/App.vue

+1-1
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-jsx-pinia-cypress/src/__tests__/App.cy.js

+1-1
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-jsx-pinia-eslint/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"eslint": "^9.18.0",
2121
"eslint-plugin-vue": "^9.32.0",
2222
"vite": "^6.0.11",
23-
"vite-plugin-vue-devtools": "^7.7.0"
23+
"vite-plugin-vue-devtools": "^7.7.1"
2424
}
2525
}

0 commit comments

Comments
 (0)