Skip to content

Commit

Permalink
Merge pull request #192 from Radical-Tools/develop
Browse files Browse the repository at this point in the history
Merge v0.1.5
  • Loading branch information
MateuszWkDev authored Apr 27, 2022
2 parents 273574b + ecd2910 commit f217eff
Show file tree
Hide file tree
Showing 81 changed files with 22,451 additions and 28,381 deletions.
12 changes: 12 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,17 @@ module.exports = {
rules: {
'react/jsx-key': ['error', { checkFragmentShorthand: true }],
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'react/function-component-definition': [
'error',
{
namedComponents: 'arrow-function',
unnamedComponents: 'arrow-function',
},
],
'react/forbid-prop-types': ['off'],
// TODO: fix
'default-param-last': ['off'],
// TODO: fix
'testing-library/no-node-access': ['off'],
},
};
4 changes: 2 additions & 2 deletions .github/workflows/aws-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- run: npm install
- run: npm run build
- name: Set AWS credentials
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/commit-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Use Node.js 14.x
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 16.x
- run: npm install
- run: npm run lint
- run: npm run prettier
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Getting Started with Radical.Studio

You can go straight to our site [Radical.Studio] (https://www.radical.tools/studio) and you can begin to create your architecture.\
For the development:\
Just clone this repository run npm install and npm start and you can start using our site on your own computer. This will be always a free tool!
This will be always a free tool!

## Development

Use latest Node LTS version (16) and npm >= 8\
Just clone this repository run npm install and npm start and you can start using our site on your own computer.

## Available Scripts

Expand Down
Loading

0 comments on commit f217eff

Please sign in to comment.