Skip to content

Commit

Permalink
Merge pull request #240 from FACT-Finder/renovate/major-all
Browse files Browse the repository at this point in the history
Update all (major)
  • Loading branch information
ArLau authored Sep 8, 2023
2 parents a6b97d0 + 2186a5d commit cd1996e
Show file tree
Hide file tree
Showing 10 changed files with 499 additions and 1,143 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: git fetch --prune --unshallow
- uses: actions/setup-node@v3
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: build
Expand All @@ -62,7 +62,7 @@ jobs:
runs-on: ubuntu-latest
needs: deploy-docker-unstable
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Deploy changelog.snage.dev
run: |
export ANSIBLE_PRIVATE_KEY_FILE="$HOME/id_rsa"
Expand All @@ -77,7 +77,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: docs
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: '16'
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: build
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: build
Expand All @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build, release-artifact]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: build
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"version": "1.0.0",
"useWorkspaces": true
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"docs": "node docs.js"
},
"devDependencies": {
"eslint-config-prettier": "8.10.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "47.0.0",
"lerna": "6.6.2"
"eslint-plugin-unicorn": "48.0.1",
"lerna": "7.2.0"
},
"resolutions": {
"@types/react": "18.2.21",
Expand Down
8 changes: 4 additions & 4 deletions packages/snage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@
"@types/yaml": "1.9.7",
"copy-webpack-plugin": "9.1.0",
"env-editor": "0.5.0",
"get-port": "6.1.2",
"get-port": "7.0.0",
"jest": "29.6.4",
"jest-junit": "16.0.0",
"lerna": "6.6.2",
"lerna": "7.2.0",
"nock": "13.3.3",
"nodemon": "2.0.22",
"nodemon": "3.0.1",
"npm-run-all": "4.1.5",
"portable-fetch": "3.0.0",
"prettier": "2.8.8",
"prettier": "3.0.3",
"snage-ui": "*",
"supertest": "6.3.3",
"ts-jest": "29.1.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/snage/src/config/load.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const createStyleProvider = (
E.either.bimap(
parser(on),
(e) => `Invalid expression "${on}" ${JSON.stringify(e)}`,
(expression) => ({matcher: createMatcher(expression, fields), css} as const)
(expression) => ({matcher: createMatcher(expression, fields), css}) as const
)
),
E.map(
Expand Down
4 changes: 2 additions & 2 deletions packages/snage/src/note/convert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const getSingletonStringType = <Type extends FieldType>(type: Type, field: Conve
semver: semverType,
ffversion: ffversionType,
string: stringType(field),
}[type]);
})[type];

const getSingletonType = <Type extends FieldType>(type: Type, field: ConvertField): IOType[Type] =>
({
Expand All @@ -102,7 +102,7 @@ const getSingletonType = <Type extends FieldType>(type: Type, field: ConvertFiel
semver: semverType,
ffversion: ffversionType,
string: stringType(field),
}[type]);
})[type];

const number = new t.Type<number, number, unknown>(
'number',
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@babel/plugin-proposal-private-property-in-object": "7.21.11",
"@types/react-syntax-highlighter": "15.5.7",
"@types/react-virtualized": "9.21.22",
"prettier": "2.8.8",
"prettier": "3.0.3",
"rimraf": "5.0.1"
}
}
Loading

0 comments on commit cd1996e

Please sign in to comment.