Skip to content

Commit c016257

Browse files
authored
Merge branch 'main' into fil/occlusion
2 parents 6916592 + 90a5689 commit c016257

File tree

850 files changed

+38805
-6836
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

850 files changed

+38805
-6836
lines changed

.eslintrc.json

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

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Bug
3+
about: Something isn’t working
4+
labels: "bug"
5+
---

.github/ISSUE_TEMPLATE/enhancement.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: Enhancement
3+
about: New feature or request
4+
labels: "enhancement"
5+
---

.github/eslint.json

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

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ jobs:
1616
url: ${{ steps.deployment.outputs.page_url }}
1717
steps:
1818
- uses: actions/checkout@v4
19-
- uses: actions/setup-node@v3
19+
- uses: actions/setup-node@v4
2020
with:
21-
node-version: 20
21+
node-version: 22
2222
cache: yarn
2323
- run: yarn --frozen-lockfile
2424
- run: yarn prepublishOnly
2525
- run: yarn docs:build
26-
- uses: actions/configure-pages@v3
27-
- uses: actions/upload-pages-artifact@v1
26+
- uses: actions/configure-pages@v4
27+
- uses: actions/upload-pages-artifact@v3
2828
with:
2929
path: docs/.vitepress/dist
3030
- name: Deploy
3131
id: deployment
32-
uses: actions/deploy-pages@v1
32+
uses: actions/deploy-pages@v4

.github/workflows/publish.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Publish
2+
3+
on:
4+
workflow_dispatch: {}
5+
release:
6+
types: [published]
7+
8+
jobs:
9+
publish:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: read
13+
packages: write
14+
steps:
15+
- uses: actions/checkout@v4
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 22
19+
cache: yarn
20+
registry-url: 'https://registry.npmjs.org'
21+
- run: yarn --frozen-lockfile
22+
- run: yarn test
23+
- run: npm publish
24+
env:
25+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/test.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- uses: actions/setup-node@v3
14+
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 20
16+
node-version: 22
1717
cache: yarn
1818
- run: yarn --frozen-lockfile
1919
- run: yarn test:mocha
2020
- run: yarn test:tsc
21-
- run: |
22-
echo ::add-matcher::.github/eslint.json
23-
yarn run eslint src test --format=compact
21+
- run: yarn test:lint
2422
- run: yarn test:prettier
2523
- run: yarn prepublishOnly
2624
- run: yarn docs:build
27-
- uses: actions/upload-artifact@v3
25+
- uses: actions/upload-artifact@v4
2826
if: failure()
2927
with:
3028
name: test-output-changes

CHANGELOG-2021.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Observable Plot - Changelog [2021]
22

3-
Year: [Current (2023)](./CHANGELOG.md) · [2022](./CHANGELOG-2022.md) · **2021**
3+
Year: [Current (2025)](./CHANGELOG.md) · [2024](./CHANGELOG-2024.md) · [2023](./CHANGELOG-2023.md) · [2022](./CHANGELOG-2022.md) · **2021**
44

55
## 0.3.2
66

CHANGELOG-2022.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Observable Plot - Changelog [2022]
22

3-
Year: [Current (2023)](./CHANGELOG.md) · **2022** · [2021](./CHANGELOG-2021.md)
3+
Year: [Current (2025)](./CHANGELOG.md) · [2024](./CHANGELOG-2024.md) · [2023](./CHANGELOG-2023.md) · **2022** · [2021](./CHANGELOG-2021.md)
44

55
## 0.6.1
66

0 commit comments

Comments
 (0)