-
Notifications
You must be signed in to change notification settings - Fork 549
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Using the default configuration of CRA, with Tailwind watch separately (
#1441) Co-authored-by: Gigin George <[email protected]>
- Loading branch information
Showing
33 changed files
with
46,663 additions
and
9,048 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,3 +38,6 @@ public/build-meta.json | |
*.bs.js | ||
*.gen.tsx | ||
*.gen | ||
|
||
# Generated CSS file from Tailwind | ||
src/style/index.css |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
Cypress.Commands.add('verifyNotification', (text) => { | ||
cy.get('.pnotify-container').should('exist').contains(text) | ||
cy.get('.pnotify-container').click() | ||
}) | ||
|
||
Cypress.Commands.add("verifyNotification", (text) => { | ||
cy.get(".pnotify-container").should("exist").contains(text); | ||
cy.get(".pnotify-container").click(); | ||
}); | ||
|
||
declare namespace Cypress { | ||
interface Chainable<Subject = any> { | ||
verifyNotification(text: String): Chainable<Subject>; | ||
} | ||
} | ||
interface Chainable<Subject = any> { | ||
verifyNotification(text: String): Chainable<Subject>; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[build] | ||
publish = "dist/" | ||
publish = "build/" | ||
|
||
[[redirects]] | ||
from = "/api/*" | ||
|
Oops, something went wrong.