mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-17 06:56:30 +00:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
de4676a924 | ||
|
|
79d75215d1 | ||
|
|
d6c0f848a3 | ||
|
|
11cf75df91 | ||
|
|
4d15d7c9f2 | ||
|
|
39345a2e6f | ||
|
|
cb049fd7b8 | ||
|
|
b488452950 | ||
|
|
1016238f73 | ||
|
|
d52115bd89 | ||
|
|
93d216da0c | ||
|
|
0d13efc34c | ||
|
|
9d97056ec2 | ||
|
|
34a387ef17 | ||
|
|
64cd6c4a38 | ||
|
|
9a0a1dcd38 | ||
|
|
a98f3aead4 | ||
|
|
039f475bcb | ||
|
|
b66cd2f439 |
6
.github/dependabot.yml
vendored
6
.github/dependabot.yml
vendored
@ -10,9 +10,13 @@ updates:
|
|||||||
# Check the npm registry for updates every day (weekdays)
|
# Check the npm registry for updates every day (weekdays)
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
|
groups:
|
||||||
|
typescript:
|
||||||
|
patterns:
|
||||||
|
- "typescript"
|
||||||
|
- "@voxpelli/tsconfig"
|
||||||
# Enable updates to github actions
|
# Enable updates to github actions
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "daily"
|
interval: "daily"
|
||||||
|
|
||||||
|
|||||||
4
.github/workflows/neocities.yml
vendored
4
.github/workflows/neocities.yml
vendored
@ -19,11 +19,11 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
# Set up any tools and build steps here
|
# Set up any tools and build steps here
|
||||||
# This example uses a Node.js toolchain to build a site
|
# This example uses a Node.js toolchain to build a site
|
||||||
- name: Use Node.js
|
- name: Use Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: ${{ env.node_version }}
|
node-version: ${{ env.node_version }}
|
||||||
- run: npm i
|
- run: npm i
|
||||||
|
|||||||
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -19,11 +19,11 @@ jobs:
|
|||||||
version_and_release:
|
version_and_release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
# fetch full history so things like auto-changelog work properly
|
# fetch full history so things like auto-changelog work properly
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: ${{ env.node_version }}
|
node-version: ${{ env.node_version }}
|
||||||
# setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED
|
# setting a registry enables the NODE_AUTH_TOKEN env variable where we can set an npm token. REQUIRED
|
||||||
|
|||||||
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -15,9 +15,9 @@ jobs:
|
|||||||
node: [lts/*]
|
node: [lts/*]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- name: Use Node.js ${{ matrix.node }}
|
- name: Use Node.js ${{ matrix.node }}
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: ${{ matrix.node }}
|
node-version: ${{ matrix.node }}
|
||||||
- run: npm i
|
- run: npm i
|
||||||
|
|||||||
@ -156,6 +156,7 @@ None.
|
|||||||
- <https://punkfairie.net> (<https://github.com/punkfairie/punkfairie-site>)
|
- <https://punkfairie.net> (<https://github.com/punkfairie/punkfairie-site>)
|
||||||
- https://github.com/jefbecker/jefbecker.com ([jefbecker.com](https://jefbecker.com))
|
- https://github.com/jefbecker/jefbecker.com ([jefbecker.com](https://jefbecker.com))
|
||||||
- https://github.com/MymeType/personal-website ([mymetype.neocities.org](https://mymetype.neocities.org/))
|
- https://github.com/MymeType/personal-website ([mymetype.neocities.org](https://mymetype.neocities.org/))
|
||||||
|
- https://github.com/oceanthunder/oceanthunder.github.io ([oceanthunder.dev](https://www.oceanthunder.dev))
|
||||||
- [See more!](https://github.com/bcomnes/deploy-to-neocities/network/dependents)
|
- [See more!](https://github.com/bcomnes/deploy-to-neocities/network/dependents)
|
||||||
- ...PR your site when you set it up!
|
- ...PR your site when you set it up!
|
||||||
|
|
||||||
|
|||||||
10
package.json
10
package.json
@ -7,20 +7,20 @@
|
|||||||
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "1.11.1",
|
"@actions/core": "2.0.2",
|
||||||
"async-neocities": "4.1.2",
|
"async-neocities": "4.1.2",
|
||||||
"minimatch": "10.0.3"
|
"minimatch": "10.1.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@voxpelli/tsconfig": "^15.0.0",
|
"@voxpelli/tsconfig": "^16.1.0",
|
||||||
"top-bun": "^10.0.0",
|
"top-bun": "^10.0.0",
|
||||||
"auto-changelog": "^2.0.0",
|
"auto-changelog": "^2.0.0",
|
||||||
"gh-release": "^7.0.0",
|
"gh-release": "^7.0.0",
|
||||||
"npm-run-all2": "^8.0.1",
|
"npm-run-all2": "^8.0.1",
|
||||||
"neostandard": "^0.12.0",
|
"neostandard": "^0.12.0",
|
||||||
"c8": "^10.0.0",
|
"c8": "^10.0.0",
|
||||||
"esbuild": "~0.25.0",
|
"esbuild": "~0.27.1",
|
||||||
"typescript": "~5.8.2"
|
"typescript": "~5.9.3"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
|
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user