Skip to content

Commit 8026c4a

Browse files
committed
fuck
1 parent 460c583 commit 8026c4a

8 files changed

Lines changed: 6 additions & 177 deletions

File tree

.env

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# Declare environment variables here
2-
VERSION = 1.18
1+
# Declare environment variables here

.github/workflows/code-style-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
uses: actions/checkout@v2
2626

2727
# Sets up node environment
28-
- name: Use Node.js 14
28+
- name: Use Node.js 17
2929
uses: actions/setup-node@v2
3030
with:
31-
node-version: '14'
31+
node-version: '17'
3232

3333
# Install node modules
3434
- name: Install node modules

.github/workflows/test-ci.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@ jobs:
1717
# The type of runner that the job will run on
1818
runs-on: ubuntu-latest
1919

20-
# List of Node.js versions to run on
21-
strategy:
22-
matrix:
23-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
24-
node-version: [ 12.x, 14.x, 15.x ]
25-
2620
# Steps represent a sequence of tasks that will be executed as part of the job
2721
steps:
2822

@@ -31,10 +25,10 @@ jobs:
3125
uses: actions/checkout@v2
3226

3327
# Sets up node environment
34-
- name: Use Node.js ${{ matrix.node-version }}
28+
- name: Use Node.js 17
3529
uses: actions/setup-node@v2
3630
with:
37-
node-version: ${{ matrix.node-version }}
31+
node-version: '17'
3832

3933
# Install node modules
4034
- name: Install node modules

package.json

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@
1818
"build": "tsc"
1919
},
2020
"devDependencies": {
21-
"@types/mkdirp": "^1.0.2",
2221
"@types/node": "^17.0.23",
23-
"@types/node-fetch": "^2.6.1",
24-
"@types/sharp": "^0.30.0",
2522
"@typescript-eslint/eslint-plugin": "^4.33.0",
2623
"@typescript-eslint/parser": "^4.33.0",
2724
"concurrently": "^7.0.0",
@@ -32,11 +29,6 @@
3229
},
3330
"dependencies": {
3431
"chalk": "^4.1.2",
35-
"dotenv": "^16.0.0",
36-
"extract-zip": "^2.0.1",
37-
"minecraft-text": "^1.2.18",
38-
"mkdirp": "^1.0.4",
39-
"node-fetch": "^2.6.7",
40-
"sharp": "^0.30.3"
32+
"dotenv": "^16.0.0"
4133
}
4234
}

src/index.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,4 @@
11
/* eslint-disable no-empty */
22
// Configure variables in environment file (.env)
33
import dotenv from "dotenv";
4-
import resourcepacks from "./resourcepacks";
54
dotenv.config();
6-
7-
const VERSIONS = [ "1.18", "1.17", "1.16", "1.15", "1.14" ];
8-
9-
(async function run(){
10-
// *********************
11-
// *** RESOURCEPACKS ***
12-
// *********************
13-
await resourcepacks(VERSIONS);
14-
}());

src/resourcepacks.ts

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

src/util.ts

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

vanillatweeks

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)