@hyperneutrino/djs-lite 1.5.0 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.ts +1 -0
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -120,6 +120,7 @@ async function importAll(
120
120
  await Promise.all(
121
121
  files.map(async (file) => {
122
122
  if (file.isDirectory()) return;
123
+ if (file.name.startsWith(".")) return;
123
124
 
124
125
  const absolutePath = path.resolve(file.parentPath, file.name);
125
126
  const relativePath = path.join(directory, path.relative(path.resolve(directory), absolutePath));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@hyperneutrino/djs-lite",
3
3
  "private": false,
4
- "version": "1.5.0",
4
+ "version": "1.5.1",
5
5
  "module": "index.ts",
6
6
  "type": "module",
7
7
  "devDependencies": {