Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: xdy/xdy-pf2e-workbench
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.7.3
Choose a base ref
...
head repository: xdy/xdy-pf2e-workbench
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Showing 1,411 changed files with 7,018 additions and 99,693 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
"prettier"
],
"parserOptions": {
"ecmaVersion": 2018,
"ecmaVersion": 2023,
"sourceType": "module",
"project": "./tsconfig.json"
},
9 changes: 1 addition & 8 deletions .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
@@ -33,21 +33,14 @@ jobs:
commit_message: "chore: Update submodules"

- name: Setup Node.js
uses: actions/setup-node@v4.0.3
uses: actions/setup-node@v4.1.0
with:
node-version: 20.x
cache: 'npm'

- name: Install
run: npm install

- name: install fvtt cli
id: fvtt-install
run: npm install -g @foundryvtt/foundryvtt-cli

- name: Build packs
run: npm run build:packs

- name: Build
run: npm run build

Loading