generated from devx-agency-deprecated/devx-next-js-starterpack
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0578b2
commit 4d7b7f6
Showing
9 changed files
with
464 additions
and
14 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
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 +1,14 @@ | ||
{"errorCodes":{"SOMETHING_WRONG":"Something went wrong, try it again later.","BAD_EMAIL":"Incorrect email.","BAD_PASSWORD":"Incorrect password.","MISSING_HELPER_ACTIONS":"This input needs helper actions!"},"notifications":{"SUCCESSFULLY_SAVED_MESSAGE":"Successfully saved","SUCCESSFULLY_SAVED_TITLE":"Saved","ITEMS_SUCCESSFULLY_DELETED_MESSAGE":"Items successfully deleted","ITEMS_SUCCESSFULLY_DELETED_TITLE":"Deleted"}} | ||
{ | ||
"errorCodes": { | ||
"SOMETHING_WRONG": "Something went wrong, try it again later.", | ||
"BAD_EMAIL": "Incorrect email.", | ||
"BAD_PASSWORD": "Incorrect password.", | ||
"MISSING_HELPER_ACTIONS": "This input needs helper actions!" | ||
}, | ||
"notifications": { | ||
"SUCCESSFULLY_SAVED_MESSAGE": "Successfully saved", | ||
"SUCCESSFULLY_SAVED_TITLE": "Saved", | ||
"ITEMS_SUCCESSFULLY_DELETED_MESSAGE": "Items successfully deleted", | ||
"ITEMS_SUCCESSFULLY_DELETED_TITLE": "Deleted" | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
const { exec } = require('child_process') | ||
|
||
const runCommand = (cmd) => { | ||
exec(cmd, (e, stdout, stderr) => { | ||
console.log(e) | ||
console.log(stdout) | ||
console.log(stderr) | ||
}) | ||
} | ||
|
||
runCommand('cd node_modules/react & yarn unlink') | ||
runCommand('cd node_modules/react-redux & yarn unlink') | ||
runCommand('cd node_modules/next & yarn unlink') |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
const { exec } = require('child_process') | ||
|
||
const runCommand = (cmd) => { | ||
exec(cmd, (e, stdout, stderr) => { | ||
console.log(e) | ||
console.log(stdout) | ||
console.log(stderr) | ||
}) | ||
} | ||
|
||
runCommand('cd node_modules/react & yarn link') | ||
runCommand('cd node_modules/react-redux & yarn link') | ||
runCommand('cd node_modules/next & yarn link') |
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
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 |
---|---|---|
|
@@ -464,10 +464,10 @@ | |
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" | ||
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== | ||
|
||
"@bheui/components@^1.0.0-alpha9": | ||
version "1.0.0-alpha9" | ||
resolved "https://registry.yarnpkg.com/@bheui/components/-/components-1.0.0-alpha9.tgz#fb72af72a1b966bd8fcecceaf6d28a83e2224508" | ||
integrity sha512-pt2ScASFqO8+IHOvGAyeyaPwajY00QPqqUqe1zWYv7UJKMmvAFla9Ki09MDbe4EZ93q5kWcqPCWoEKEU0Qz81A== | ||
"@bheui/[email protected]alpha12": | ||
version "1.0.0-alpha12" | ||
resolved "https://registry.yarnpkg.com/@bheui/components/-/components-1.0.0-alpha12.tgz#5778267bf121f5072194b23aaf2a21ce144a7de9" | ||
integrity sha512-k9d6FzgVjnB6WlKBDGXWXMIhiSP7gwvVO8TlDui51SeIHRaNA7aXzh4CDCGhxzIOKYiZuEaTnNizcqoHCMC/fg== | ||
dependencies: | ||
"@uppy/core" "^1.14.0" | ||
"@uppy/react" "^1.10.10" | ||
|