create-nuxt-base 0.1.21 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -0
- package/nuxt-base-template/src/assets/css/tailwind.css +10 -10
- package/package.json +1 -1
- package/nuxt-base-template/cypress/e2e/spec.cy.ts +0 -5
- package/nuxt-base-template/cypress/fixtures/example.json +0 -5
- package/nuxt-base-template/cypress/integrations/Test/Test.feature +0 -8
- package/nuxt-base-template/cypress/integrations/Test/test.spec.js +0 -13
- package/nuxt-base-template/cypress/support/commands.ts +0 -37
- package/nuxt-base-template/cypress/support/e2e.ts +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.22](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.21...v0.1.22) (2023-10-21)
|
|
6
|
+
|
|
5
7
|
### [0.1.21](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.20...v0.1.21) (2023-10-19)
|
|
6
8
|
|
|
7
9
|
### [0.1.20](https://github.com/lenneTech/nuxt-base-starter/compare/v0.1.19...v0.1.20) (2023-07-03)
|
|
@@ -5,34 +5,34 @@
|
|
|
5
5
|
@apply transition-colors duration-300;
|
|
6
6
|
}
|
|
7
7
|
h1 {
|
|
8
|
-
@apply text-[32px]
|
|
8
|
+
@apply text-[32px] leading-[140%] lg:text-[66px] lg:leading-[140%] font-bold;
|
|
9
9
|
}
|
|
10
10
|
h2 {
|
|
11
|
-
@apply text-[28px]
|
|
11
|
+
@apply text-[28px] leading-[140%] lg:text-[51px] lg:leading-[140%] font-semibold;
|
|
12
12
|
}
|
|
13
13
|
h3 {
|
|
14
|
-
@apply text-[21px]
|
|
14
|
+
@apply text-[21px] leading-[140%] lg:text-[39px] lg:leading-[140%] font-bold;
|
|
15
15
|
}
|
|
16
16
|
h4 {
|
|
17
|
-
@apply text-[18px]
|
|
17
|
+
@apply text-[18px] leading-[140%] lg:text-[30px] lg:leading-[140%] font-bold;
|
|
18
18
|
}
|
|
19
19
|
h5 {
|
|
20
|
-
@apply text-[15px]
|
|
20
|
+
@apply text-[15px] leading-[140%] lg:text-[23px] lg:leading-[140%] font-bold;
|
|
21
21
|
}
|
|
22
22
|
h6 {
|
|
23
|
-
@apply text-[16px]
|
|
23
|
+
@apply text-[16px] leading-[140%] lg:text-[18px] lg:leading-[140%] font-bold;
|
|
24
24
|
}
|
|
25
25
|
p {
|
|
26
|
-
@apply text-[15px]
|
|
26
|
+
@apply text-[15px] leading-[140%] lg:text-[18px] lg:leading-[140%];
|
|
27
27
|
}
|
|
28
28
|
small {
|
|
29
|
-
@apply text-[14px]
|
|
29
|
+
@apply text-[14px] leading-[140%] lg:text-[16px] lg:leading-[140%];
|
|
30
30
|
}
|
|
31
31
|
a {
|
|
32
|
-
@apply text-[15px]
|
|
32
|
+
@apply text-[15px] leading-[140%] lg:text-[18px] lg:leading-[140%];
|
|
33
33
|
}
|
|
34
34
|
button {
|
|
35
|
-
@apply text-[15px]
|
|
35
|
+
@apply text-[15px] leading-[140%] lg:text-[18px] lg:leading-[140%] font-semibold;
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
|
package/package.json
CHANGED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/indent */
|
|
2
|
-
/* eslint-disable no-undef */
|
|
3
|
-
import { Given, Then, When } from '@badeball/cypress-cucumber-preprocessor'
|
|
4
|
-
|
|
5
|
-
Given('I navigate to the website', () => {
|
|
6
|
-
cy.visit('localhost:3000')
|
|
7
|
-
})
|
|
8
|
-
When('I enter site', () => {
|
|
9
|
-
cy.url().should('include', 'localhost')
|
|
10
|
-
})
|
|
11
|
-
Then('Check title', () => {
|
|
12
|
-
cy.get('h1').contains('Nuxt Starter')
|
|
13
|
-
})
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
/// <reference types="cypress" />
|
|
2
|
-
// ***********************************************
|
|
3
|
-
// This example commands.ts shows you how to
|
|
4
|
-
// create various custom commands and overwrite
|
|
5
|
-
// existing commands.
|
|
6
|
-
//
|
|
7
|
-
// For more comprehensive examples of custom
|
|
8
|
-
// commands please read more here:
|
|
9
|
-
// https://on.cypress.io/custom-commands
|
|
10
|
-
// ***********************************************
|
|
11
|
-
//
|
|
12
|
-
//
|
|
13
|
-
// -- This is a parent command --
|
|
14
|
-
// Cypress.Commands.add('login', (email, password) => { ... })
|
|
15
|
-
//
|
|
16
|
-
//
|
|
17
|
-
// -- This is a child command --
|
|
18
|
-
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
// -- This is a dual command --
|
|
22
|
-
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
|
|
23
|
-
//
|
|
24
|
-
//
|
|
25
|
-
// -- This will overwrite an existing command --
|
|
26
|
-
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
|
|
27
|
-
//
|
|
28
|
-
// declare global {
|
|
29
|
-
// namespace Cypress {
|
|
30
|
-
// interface Chainable {
|
|
31
|
-
// login(email: string, password: string): Chainable<void>
|
|
32
|
-
// drag(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
|
|
33
|
-
// dismiss(subject: string, options?: Partial<TypeOptions>): Chainable<Element>
|
|
34
|
-
// visit(originalFn: CommandOriginalFn, url: string, options: Partial<VisitOptions>): Chainable<Element>
|
|
35
|
-
// }
|
|
36
|
-
// }
|
|
37
|
-
// }
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
// ***********************************************************
|
|
2
|
-
// This example support/e2e.ts is processed and
|
|
3
|
-
// loaded automatically before your test files.
|
|
4
|
-
//
|
|
5
|
-
// This is a great place to put global configuration and
|
|
6
|
-
// behavior that modifies Cypress.
|
|
7
|
-
//
|
|
8
|
-
// You can change the location of this file or turn off
|
|
9
|
-
// automatically serving support files with the
|
|
10
|
-
// 'supportFile' configuration option.
|
|
11
|
-
//
|
|
12
|
-
// You can read more here:
|
|
13
|
-
// https://on.cypress.io/configuration
|
|
14
|
-
// ***********************************************************
|
|
15
|
-
|
|
16
|
-
// Import commands.js using ES2015 syntax:
|
|
17
|
-
import './commands';
|
|
18
|
-
|
|
19
|
-
// Alternatively you can use CommonJS syntax:
|
|
20
|
-
// require('./commands')
|