Skip to content

Commit f38c3ab

Browse files
committed
Merge branch 'master' into fix/deps
2 parents 037ddbb + 81c778b commit f38c3ab

File tree

27 files changed

+3259
-2469
lines changed

27 files changed

+3259
-2469
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Initializes the CodeQL tools for scanning.
4444
- name: Initialize CodeQL
45-
uses: github/codeql-action/init@v1
45+
uses: github/codeql-action/init@v2
4646
with:
4747
languages: ${{ matrix.language }}
4848
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,7 +53,7 @@ jobs:
5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
5555
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v1
56+
uses: github/codeql-action/autobuild@v2
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -67,4 +67,4 @@ jobs:
6767
# make release
6868

6969
- name: Perform CodeQL Analysis
70-
uses: github/codeql-action/analyze@v1
70+
uses: github/codeql-action/analyze@v2

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- run: yarn build
5454
- run: yarn test
5555

56-
- uses: codecov/codecov-action@v2
56+
- uses: codecov/codecov-action@v3
5757
if: matrix.node-version == 16 && matrix.os == 'ubuntu-latest'
5858
with:
5959
fail_ci_if_error: true

.yarn/releases/yarn-3.2.0.cjs

Lines changed: 0 additions & 785 deletions
This file was deleted.

.yarn/releases/yarn-3.2.1.cjs

Lines changed: 786 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ plugins:
1010
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
1111
spec: "@yarnpkg/plugin-workspace-tools"
1212

13-
yarnPath: .yarn/releases/yarn-3.2.0.cjs
13+
yarnPath: .yarn/releases/yarn-3.2.1.cjs

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,7 @@
1515
- Faker response generator for mocking on development phase
1616
- ~~Support both Nuxt 2 and Nuxt 3~~ - *TODO*
1717
- ~~Vue form builder~~ - *TODO*
18+
19+
20+
## License
21+
[MIT](/LICENSE) License

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nugrpc-monorepo",
3-
"packageManager": "[email protected].0",
3+
"packageManager": "[email protected].1",
44
"private": true,
55
"workspaces": [
66
"packages/*",
@@ -14,7 +14,7 @@
1414
"license": "MIT",
1515
"devDependencies": {
1616
"cross-env": "^7.0.3",
17-
"jest": "27.5.1",
18-
"unbuild": "0.7.2"
17+
"jest": "28.1.0",
18+
"unbuild": "0.7.4"
1919
}
2020
}

packages/google-rpc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@privyid/google-rpc",
3-
"packageManager": "[email protected].0",
3+
"packageManager": "[email protected].1",
44
"scripts": {
55
"clean": "rimraf index.js index.d.ts",
66
"build": "yarn clean && yarn build:js && yarn build:ts",

packages/nugrpc-api-nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"name": "@privyid/nugrpc-api-nuxt",
3-
"packageManager": "[email protected]",
43
"main": "./dist/module.cjs",
54
"module": "./dist/module.mjs",
65
"types": "./dist/module.d.ts",
@@ -16,6 +15,7 @@
1615
"test": "jest",
1716
"coverage": "jest --coverage"
1817
},
18+
"packageManager": "[email protected]",
1919
"devDependencies": {
2020
"@nuxt/schema": "^0.1.0-edge",
2121
"@nuxt/types": "^2.15.8",

packages/nugrpc-api/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@privyid/nugrpc-api",
3-
"packageManager": "[email protected].0",
3+
"packageManager": "[email protected].1",
44
"main": "./dist/index.cjs",
55
"module": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",
@@ -23,12 +23,12 @@
2323
"native-abort-controller": "^1.0.4"
2424
},
2525
"devDependencies": {
26-
"@jest/globals": "^27.5.1",
26+
"@jest/globals": "28.1.0",
2727
"@types/url-join": "^4",
2828
"axios-mock-adapter": "^1.20.0",
2929
"cross-env": "^7.0.3",
30-
"jest": "27.5.1",
31-
"unbuild": "0.7.2"
30+
"jest": "28.1.0",
31+
"unbuild": "0.7.4"
3232
},
3333
"license": "MIT"
3434
}

0 commit comments

Comments
 (0)