lucid-package 0.0.121 → 0.0.122

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/package.json +1 -1
  2. package/src/package.d.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucid-package",
3
- "version": "0.0.121",
3
+ "version": "0.0.122",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/package.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { PackageManifest } from './packagemanifest';
2
2
  export declare function createEmptyPackage(root: string): Promise<void>;
3
3
  export declare function currentlyInPackage(): boolean;
4
- export declare function readJson(path: string): Promise<unknown>;
4
+ export declare function readJson(path: string): Promise<any>;
5
5
  export declare function modifyManifest(callback: (manifest: PackageManifest) => void | Promise<void>, manifestOverrideEnv?: string): Promise<void>;
6
6
  export declare function updateAllExtensionSDK(): Promise<void>;
7
7
  /**