Update names to kebab case
This commit is contained in:
parent
2fc57718a6
commit
668b96ac4c
5 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
import { promises as fsPromises } from "fs";
|
import { promises as fsPromises } from "fs";
|
||||||
import { afterEach, describe, expect, it, vi } from "vitest";
|
import { afterEach, describe, expect, it, vi } from "vitest";
|
||||||
|
|
||||||
import { FileAPL } from "./fileAPL";
|
import { FileAPL } from "./file-apl";
|
||||||
|
|
||||||
const stubAuthData = {
|
const stubAuthData = {
|
||||||
domain: "example.com",
|
domain: "example.com",
|
|
@ -1,3 +1,3 @@
|
||||||
export * from "./apl";
|
export * from "./apl";
|
||||||
export * from "./fileAPL";
|
export * from "./file-apl";
|
||||||
export * from "./vercelAPL";
|
export * from "./vercel-apl";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
import { afterEach, describe, expect, it } from "vitest";
|
import { afterEach, describe, expect, it } from "vitest";
|
||||||
|
|
||||||
import { VercelAPL, VercelAPLVariables } from "./vercelAPL";
|
import { VercelAPL, VercelAPLVariables } from "./vercel-apl";
|
||||||
|
|
||||||
const aplConfig = {
|
const aplConfig = {
|
||||||
deploymentToken: "token",
|
deploymentToken: "token",
|
Loading…
Reference in a new issue