refactor!: move dirs outside of src/ (#2032)

This commit is contained in:
Skillz4Killz
2022-02-11 04:49:53 -05:00
committed by GitHub
parent 471ef5cb6c
commit 8aaea9f339
594 changed files with 84 additions and 66 deletions
+14 -2
View File
@@ -3,14 +3,26 @@ name: Local Tests Only
on:
push:
paths:
- "handlers/**"
- "helpers/**"
- "plugins/**"
- "src/**"
- "rest/**"
- "tests/**"
- "transformers/**"
- "types/**"
- "util/**"
- "ws/**"
pull_request:
paths:
- "handlers/**"
- "helpers/**"
- "plugins/**"
- "src/**"
- "rest/**"
- "tests/**"
- "transformers/**"
- "types/**"
- "util/**"
- "ws/**"
jobs:
test:
+7 -1
View File
@@ -3,9 +3,15 @@ name: Test
on:
push:
paths:
- "handlers/**"
- "helpers/**"
- "plugins/**"
- "src/**"
- "rest/**"
- "tests/**"
- "transformers/**"
- "types/**"
- "util/**"
- "ws/**"
jobs:
test:
View File
+3 -3
View File
@@ -27,15 +27,15 @@ await build({
"./mod.ts",
{
name: "./rest",
path: "src/rest/mod.ts",
path: "rest/mod.ts",
},
{
name: "./gateway",
path: "src/ws/mod.ts",
path: "ws/mod.ts",
},
{
name: "./types",
path: "src/types/mod.ts",
path: "types/mod.ts",
},
{
name: "./plugins",

Some files were not shown because too many files have changed in this diff Show More