-
-
Notifications
You must be signed in to change notification settings - Fork 278
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
50a1a0c
commit 6f62227
Showing
179 changed files
with
3,409 additions
and
3,431 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 |
---|---|---|
|
@@ -55,7 +55,7 @@ jobs: | |
path: ${{ env.CACHE_NODE_MODULES_PATH }} | ||
key: build-${{ hashFiles('**/package-lock.json') }} | ||
- run: npm run build:website | ||
- run: "npx netlify deploy --build --prod --message \"Deploy from GitHub Actions\"" | ||
- run: 'npx netlify deploy --build --prod --message "Deploy from GitHub Actions"' | ||
env: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
|
@@ -74,7 +74,7 @@ jobs: | |
key: build-${{ hashFiles('**/package-lock.json') }} | ||
- uses: nelonoel/[email protected] | ||
- run: npm run build:website | ||
- run: "npx netlify deploy --build --message \"Deploy Preview from GitHub Actions\" --alias \"${{ env.BRANCH_NAME }}\" --filter docs-ui" | ||
- run: 'npx netlify deploy --build --message "Deploy Preview from GitHub Actions" --alias "${{ env.BRANCH_NAME }}" --filter docs-ui' | ||
env: | ||
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }} | ||
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }} | ||
|
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 |
---|---|---|
|
@@ -7,7 +7,6 @@ env: | |
~/.npm | ||
node_modules | ||
jobs: | ||
build_checks: | ||
name: Build Checks | ||
|
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,34 +1,30 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "npm run start:next", | ||
"name": "Run npm start:next", | ||
"request": "launch", | ||
"type": "node-terminal" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "gpt:pr", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"program": "${workspaceFolder}/gpt/index.js", | ||
"args": ["--pr"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "gpt:commit", | ||
"skipFiles": [ | ||
"<node_internals>/**" | ||
], | ||
"program": "${workspaceFolder}/gpt/index.js", | ||
"args": ["--commit"] | ||
} | ||
] | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"command": "npm run start:next", | ||
"name": "Run npm start:next", | ||
"request": "launch", | ||
"type": "node-terminal" | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "gpt:pr", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}/gpt/index.js", | ||
"args": ["--pr"] | ||
}, | ||
{ | ||
"type": "node", | ||
"request": "launch", | ||
"name": "gpt:commit", | ||
"skipFiles": ["<node_internals>/**"], | ||
"program": "${workspaceFolder}/gpt/index.js", | ||
"args": ["--commit"] | ||
} | ||
] | ||
} |
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,15 +1,18 @@ | ||
# Thanks you for your contribution! | ||
|
||
## commits | ||
* must be followed by conventional commits | ||
* could be achieved by using git commitizen (embedded in this repo). | ||
|
||
- must be followed by conventional commits | ||
- could be achieved by using git commitizen (embedded in this repo). | ||
|
||
## version release | ||
* to release a version, please follow this command: | ||
* `nx run PROJECT-NAME:version --releaseAs=MAJOR/MINOR/PATCH` | ||
* find more options [here](https://github.com/jscutlery/semver#specify-the-level-of-change) | ||
* this command will perform couple of operations. | ||
* tag your commit with the relevant version. | ||
* create changelog using semantic commits. | ||
* bump the version of the project. | ||
* if other projects depends on the current released project, they will be bumped as well. | ||
* if case of bumping nextjs-mf project, NPM publish operation will be performed as well. | ||
|
||
- to release a version, please follow this command: | ||
- `nx run PROJECT-NAME:version --releaseAs=MAJOR/MINOR/PATCH` | ||
- find more options [here](https://github.com/jscutlery/semver#specify-the-level-of-change) | ||
- this command will perform couple of operations. | ||
- tag your commit with the relevant version. | ||
- create changelog using semantic commits. | ||
- bump the version of the project. | ||
- if other projects depends on the current released project, they will be bumped as well. | ||
- if case of bumping nextjs-mf project, NPM publish operation will be performed as well. |
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
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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
.is-open { | ||
background: red; | ||
} | ||
} | ||
} |
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,3 +1,3 @@ | ||
'use strict'; | ||
|
||
module.exports = ( a, b ) => a > b; | ||
module.exports = (a, b) => a > b; |
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,3 +1,3 @@ | ||
'use strict'; | ||
|
||
module.exports = (val) => val ? val.length : 0; | ||
module.exports = (val) => (val ? val.length : 0); |
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
Oops, something went wrong.