codemelt 0.1.0 → 0.1.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.
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -5,8 +5,8 @@ import ora from "ora";
|
|
|
5
5
|
import fs from "fs-extra";
|
|
6
6
|
import path from "path";
|
|
7
7
|
import { performance } from "node:perf_hooks";
|
|
8
|
-
import { scanFiles, generateRepositoryContext, shouldIgnore } from "
|
|
9
|
-
import { DEFAULT_IGNORES, MAX_DIRECTORY_DEPTH } from "
|
|
8
|
+
import { scanFiles, generateRepositoryContext, shouldIgnore } from "codemelt-core";
|
|
9
|
+
import { DEFAULT_IGNORES, MAX_DIRECTORY_DEPTH } from "codemelt-shared";
|
|
10
10
|
const majorNodeVersion = parseInt(process.versions.node.split(".")[0], 10);
|
|
11
11
|
if (majorNodeVersion < 18) {
|
|
12
12
|
console.error("Error: CodeMelt requires Node.js version 18 or higher.");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codemelt",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.js",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"commander": "^12.1.0",
|
|
28
28
|
"fs-extra": "^11.2.0",
|
|
29
29
|
"ora": "^8.0.1",
|
|
30
|
-
"codemelt-core": "^0.1.
|
|
31
|
-
"
|
|
30
|
+
"codemelt-core": "^0.1.1",
|
|
31
|
+
"codemelt-shared": "^0.1.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@types/fs-extra": "^11.0.4",
|