Skip to content

Commit f5bbef6

Browse files
authored
Merge pull request #115 from Tresjs/bugfix/update-repo-standard-and-deps
fix: update-repo-standard-and-deps
2 parents 00e57e2 + cd9dd81 commit f5bbef6

File tree

105 files changed

+18311
-12013
lines changed

Some content is hidden

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

105 files changed

+18311
-12013
lines changed

.eslintignore

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

.eslintrc.json

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

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @alvarosabu

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github: [alvarosabu]
1+
github: [tresjs, alvarosabu]
22
ko_fi: alvarosaburido
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: "\U0001F41E Bug report"
1+
name: 🐞 Bug report
22
description: Report an issue with TresJS ▲ ■ ● or any of it's packages
33
labels: [pending triage]
44
body:
55
- type: markdown
66
attributes:
77
value: |
88
Thanks for taking the time to fill out this bug report!
9-
- type: textarea
9+
- type: textarea
1010
id: bug-description
1111
attributes:
1212
label: Describe the bug
1313
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
1414
placeholder: I am doing ... What I expect is ... What actually happening is ...
1515
validations:
16-
required: true
16+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
blank_issues_enabled: false
1+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/🐛-bug-report.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ A clear and concise description of what the bug is. If you intend to submit a PR
1313
I am doing ... What I expect is ... What actually happening is
1414

1515
**Reproduction**
16-
Please provide a link using this template on [Stackblitz](https://stackblitz.com/edit/tresjs-basic?file=README.md)
16+
Please provide a link using this template on [Stackblitz](https://stackblitz.com/edit/tresjs-basic?file=README.md)
1717

1818
**Steps**
1919
Steps to reproduce the behavior:
@@ -29,8 +29,7 @@ A clear and concise description of what you expected to happen.
2929
If applicable, add screenshots to help explain your problem.
3030

3131
**System Info**
32-
Output of `npx envinfo --system --npmPackages '{vite,@tresjs/*, three, vue}' --binaries --browsers`
33-
32+
Output of `npx envinfo --system --npmPackages '{vite,@tresjs/*, three, vue}' --binaries --browsers`
3433

3534
**Additional context**
3635
Add any other context about the problem here.

.github/workflows/lint-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: 'Lint PR'
1+
name: Lint PR
22

33
on:
44
pull_request_target:

.github/workflows/lint.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,20 @@ env:
88
jobs:
99
lint:
1010
name: Lint
11-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-24.04
1212
strategy:
1313
matrix:
14-
node-version: [16]
14+
node-version: [20]
1515
steps:
1616
- name: Checkout
1717
uses: actions/checkout@v4
1818
- name: Setup pnpm
19-
uses: pnpm/action-setup@v2
20-
with:
21-
version: 8
19+
uses: pnpm/action-setup@v4
2220
- name: Use Node.js ${{ matrix.node-version }}
2321
uses: actions/setup-node@v4
2422
with:
2523
node-version: ${{ matrix.node-version }}
26-
cache: 'pnpm'
24+
cache: pnpm
2725
- name: Install dependencies
2826
run: pnpm install
2927
- name: Run Lint

.github/workflows/pkg.pr.new.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Publish Any Commit
2+
on:
3+
push:
4+
branches:
5+
- '**'
6+
tags:
7+
- '!**'
8+
9+
env:
10+
PNPM_CACHE_FOLDER: .pnpm-store
11+
HUSKY: 0 # Bypass husky commit hook for CI
12+
13+
permissions: {}
14+
15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.event.number }}
17+
cancel-in-progress: true
18+
19+
jobs:
20+
build:
21+
runs-on: ubuntu-latest
22+
strategy:
23+
matrix:
24+
node-version: [20]
25+
steps:
26+
- name: Checkout code
27+
uses: actions/checkout@v4
28+
29+
- run: corepack enable
30+
- uses: actions/setup-node@v4
31+
with:
32+
node-version: ${{ matrix.node-version }}
33+
cache: pnpm
34+
- name: Install dependencies
35+
run: pnpm install
36+
- name: Build
37+
run: pnpm build
38+
- run: pnpx pkg-pr-new publish --compact --pnpm

0 commit comments

Comments
 (0)