1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-02-27 01:33:15 +00:00

Compare commits

...

7 Commits

Author SHA1 Message Date
Brandon
c9d75dbe48 wip 2026-02-18 15:31:40 -05:00
Brandon
73311ccd4c wip 2026-02-18 15:27:26 -05:00
Brandon
6f0ab084d8 wip 2026-02-18 15:23:05 -05:00
Brandon
83ef9888e6 wip 2026-02-18 15:13:21 -05:00
renovate[bot]
1fd8bf318f [deps]: Update webpack to v5.105.1 (#999)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-17 11:49:12 -05:00
renovate[bot]
c472d5e199 [deps]: Lock file maintenance (#1001)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Jared <TheWolfBadger@gmail.com>
2026-02-17 11:04:46 -05:00
renovate[bot]
1a42e76c79 [deps]: Update eslint-plugin-rxjs-x to v0.9.1 (#998)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-16 15:47:22 +00:00
4 changed files with 1360 additions and 918 deletions

View File

@@ -0,0 +1,34 @@
name: "Setup Node Environment"
description: "Sets up Node.js with npm cache and installs node-gyp"
inputs:
node-version:
description: "Node.js version to use"
required: true
platform:
description: "Platform name (Linux, macOS, Windows) - used for shell selection"
required: false
default: "Linux"
runs:
using: "composite"
steps:
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
cache: "npm"
cache-dependency-path: "**/package-lock.json"
node-version: ${{ inputs.node-version }}
- name: Update NPM and install node-gyp (Unix)
if: inputs.platform != 'Windows'
shell: bash
run: |
npm install -g node-gyp
node-gyp install "$(node -v)"
- name: Update NPM and install node-gyp (Windows)
if: inputs.platform == 'Windows'
shell: pwsh
run: |
npm install -g node-gyp
node-gyp install $(node -v)

View File

@@ -55,17 +55,11 @@ jobs:
with:
persist-credentials: false
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- name: Setup Node Environment
uses: ./.github/actions/setup-node-env
with:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: ${{ env._NODE_VERSION }}
- name: Update NPM
run: |
npm install -g node-gyp
node-gyp install "$(node -v)"
platform: Linux
- name: Keytar
run: |
@@ -133,17 +127,11 @@ jobs:
with:
persist-credentials: false
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- name: Setup Node Environment
uses: ./.github/actions/setup-node-env
with:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: ${{ env._NODE_VERSION }}
- name: Update NPM
run: |
npm install -g node-gyp
node-gyp install "$(node -v)"
platform: macOS
- name: Keytar
run: |
@@ -208,17 +196,11 @@ jobs:
run: |
choco install checksum --no-progress
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- name: Setup Node Environment
uses: ./.github/actions/setup-node-env
with:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: ${{ env._NODE_VERSION }}
- name: Update NPM
run: |
npm install -g node-gyp
node-gyp install $(node -v)
platform: Windows
- name: Keytar
shell: pwsh
@@ -243,8 +225,8 @@ jobs:
run: npm run dist:cli:win
- name: Zip
shell: cmd
run: 7z a .\dist-cli\bwdc-windows-%_PACKAGE_VERSION%.zip .\dist-cli\windows\bwdc.exe .\keytar\windows\keytar.node
shell: pwsh
run: 7z a .\dist-cli\bwdc-windows-$env:_PACKAGE_VERSION.zip .\dist-cli\windows\bwdc.exe .\keytar\windows\keytar.node
- name: Version Test
shell: pwsh
@@ -283,17 +265,11 @@ jobs:
with:
persist-credentials: false
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- name: Setup Node Environment
uses: ./.github/actions/setup-node-env
with:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: ${{ env._NODE_VERSION }}
- name: Update NPM
run: |
npm install -g node-gyp
node-gyp install $(node -v)
platform: Windows
- name: Print environment
run: |
@@ -383,17 +359,11 @@ jobs:
with:
persist-credentials: false
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- name: Setup Node Environment
uses: ./.github/actions/setup-node-env
with:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: ${{ env._NODE_VERSION }}
- name: Update NPM
run: |
npm install -g node-gyp
node-gyp install "$(node -v)"
platform: Linux
- name: Set up environment
run: |
@@ -443,17 +413,11 @@ jobs:
with:
persist-credentials: false
- name: Set up Node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
- name: Setup Node Environment
uses: ./.github/actions/setup-node-env
with:
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
node-version: ${{ env._NODE_VERSION }}
- name: Update NPM
run: |
npm install -g node-gyp
node-gyp install "$(node -v)"
platform: macOS
- name: Print environment
run: |

2164
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -112,7 +112,7 @@
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-rxjs-angular-x": "0.1.0",
"eslint-plugin-rxjs-x": "0.8.3",
"eslint-plugin-rxjs-x": "0.9.1",
"form-data": "4.0.4",
"glob": "13.0.0",
"html-loader": "5.1.0",
@@ -137,7 +137,7 @@
"tsconfig-paths-webpack-plugin": "4.2.0",
"type-fest": "5.4.2",
"typescript": "5.9.3",
"webpack": "5.104.1",
"webpack": "5.105.1",
"webpack-cli": "6.0.1",
"webpack-merge": "6.0.1",
"webpack-node-externals": "3.0.0",