@lunar-kit/core 0.1.1 → 0.1.2
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.d.ts +2 -1
- package/dist/index.js +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
declare const REGISTRY_URL = "https://raw.githubusercontent.com/yourusername/lunar-kit/main/packages/core/src/registry";
|
|
2
2
|
declare const LOCAL_REGISTRY_PATH: string;
|
|
3
3
|
declare const LOCAL_COMPONENTS_PATH: string;
|
|
4
|
+
declare const LOCAL_SOURCE_PATH: string;
|
|
4
5
|
|
|
5
|
-
export { LOCAL_COMPONENTS_PATH, LOCAL_REGISTRY_PATH, REGISTRY_URL };
|
|
6
|
+
export { LOCAL_COMPONENTS_PATH, LOCAL_REGISTRY_PATH, LOCAL_SOURCE_PATH, REGISTRY_URL };
|
package/dist/index.js
CHANGED
|
@@ -7,8 +7,10 @@ var __dirname = dirname(__filename);
|
|
|
7
7
|
var REGISTRY_URL = "https://raw.githubusercontent.com/yourusername/lunar-kit/main/packages/core/src/registry";
|
|
8
8
|
var LOCAL_REGISTRY_PATH = path.join(__dirname, "..", "src", "registry");
|
|
9
9
|
var LOCAL_COMPONENTS_PATH = path.join(__dirname, "..", "src", "components");
|
|
10
|
+
var LOCAL_SOURCE_PATH = path.join(__dirname, "..", "src");
|
|
10
11
|
export {
|
|
11
12
|
LOCAL_COMPONENTS_PATH,
|
|
12
13
|
LOCAL_REGISTRY_PATH,
|
|
14
|
+
LOCAL_SOURCE_PATH,
|
|
13
15
|
REGISTRY_URL
|
|
14
16
|
};
|