Skip to content

Commit 8fe0900

Browse files
authored
Convert check-yaml.js to CommonJS format
1 parent 4dd1f86 commit 8fe0900

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import fs from "fs";
2-
import yaml from "js-yaml";
3-
import glob from "glob";
1+
const fs = require("fs");
2+
const yaml = require("js-yaml");
3+
const glob = require("glob");
44

55
const SNAKE_CASE_REGEX = /^[a-z][a-z0-9_]*$/;
66

0 commit comments

Comments
 (0)