Skip to content

Commit a8a6740

Browse files
authored
Merge pull request #223 from privy-open-source/release/1.0.0
release: `1.0.0`
2 parents 47be052 + 5e858e0 commit a8a6740

File tree

4 files changed

+129
-152
lines changed

4 files changed

+129
-152
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,29 +13,21 @@ on:
1313

1414
jobs:
1515
analyze:
16-
runs-on: ${{ matrix.os }}
16+
runs-on: ubuntu-latest
1717

1818
permissions:
1919
actions: read
2020
contents: read
2121
security-events: write
2222

23-
strategy:
24-
fail-fast: false
25-
matrix:
26-
os:
27-
- ubuntu-latest
28-
language:
29-
- javascript
30-
3123
steps:
3224
- name: Git Checkout
3325
uses: actions/checkout@v4
3426

3527
- name: Initialize CodeQL
3628
uses: github/codeql-action/init@v3
3729
with:
38-
languages: ${{ matrix.language }}
30+
languages: javascript
3931

4032
- name: Autobuild
4133
uses: github/codeql-action/autobuild@v3
@@ -44,15 +36,7 @@ jobs:
4436
uses: github/codeql-action/analyze@v3
4537

4638
build:
47-
runs-on: ${{ matrix.os }}
48-
49-
strategy:
50-
fail-fast: false
51-
matrix:
52-
os:
53-
- ubuntu-latest
54-
node-version:
55-
- 18
39+
runs-on: ubuntu-latest
5640

5741
steps:
5842
- name: Git Checkout
@@ -73,10 +57,10 @@ jobs:
7357
restore-keys: |
7458
${{ runner.os }}-yarn-
7559
76-
- name: Use Node.js ${{ matrix.node-version }}
60+
- name: Use Node.js 20
7761
uses: actions/setup-node@v4
7862
with:
79-
node-version: ${{ matrix.node-version }}
63+
node-version: 20
8064
cache: "yarn"
8165

8266
- name: Install Deps

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

package.json

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@privyid/nuauth",
3-
"version": "0.9.2",
3+
"version": "1.0.0",
44
"packageManager": "yarn@4.1.1",
55
"license": "MIT",
66
"type": "module",
@@ -60,27 +60,26 @@
6060
},
6161
"devDependencies": {
6262
"@nuxt/module-builder": "0.5.5",
63-
"@nuxt/schema": "^3.3.3",
64-
"@privyid/eslint-config-persona": "^0.27.0",
63+
"@nuxt/schema": "3.11.1",
64+
"@privyid/eslint-config-persona": "0.27.0",
6565
"@types/html-escaper": "3.0.2",
66-
"@types/node": "18.19.28",
66+
"@types/node": "18.19.31",
6767
"@types/simple-oauth2": "5.0.7",
6868
"@typescript-eslint/eslint-plugin": "5.62.0",
6969
"@typescript-eslint/parser": "5.62.0",
7070
"@vue/eslint-config-typescript": "13.0.0",
71-
"eslint": "^8.35.0",
72-
"eslint-config-standard-with-typescript": "^35.0.0",
73-
"eslint-formatter-pretty": "^5.0.0",
74-
"eslint-plugin-align-assignments": "^1.1.2",
75-
"eslint-plugin-import": "^2.27.5",
76-
"eslint-plugin-n": "^16.0.0",
77-
"eslint-plugin-n": "^14.0.0",
78-
"eslint-plugin-promise": "^6.1.1",
79-
"eslint-plugin-unicorn": "^47.0.0",
80-
"eslint-plugin-varspacing": "^1.2.2",
81-
"eslint-plugin-vue": "^9.9.0",
82-
"nuxt": "^3.5.2",
83-
"typescript": "5.4.3"
71+
"eslint": "8.57.0",
72+
"eslint-config-standard-with-typescript": "35.0.0",
73+
"eslint-formatter-pretty": "5.0.0",
74+
"eslint-plugin-align-assignments": "1.1.2",
75+
"eslint-plugin-import": "2.29.1",
76+
"eslint-plugin-n": "16.0.0",
77+
"eslint-plugin-promise": "6.1.1",
78+
"eslint-plugin-unicorn": "47.0.0",
79+
"eslint-plugin-varspacing": "1.2.2",
80+
"eslint-plugin-vue": "9.9.0",
81+
"nuxt": "3.11.1",
82+
"typescript": "5.4.5"
8483
},
8584
"publishConfig": {
8685
"access": "public"

0 commit comments

Comments
 (0)