@datapos/datapos-development 0.3.356 → 0.3.358
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.
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
declare function buildDirectoryIndex(id: string): Promise<void>;
|
|
5
5
|
export { buildDirectoryIndex };
|
|
6
|
-
export { buildProject, releaseProject,
|
|
6
|
+
export { buildProject, releaseProject, syncProjectWithGitHub, testProject } from './operations/manageProject';
|
|
7
7
|
export { auditDependencies } from './operations/auditDependencies';
|
|
8
8
|
export { checkDependencies } from './operations/checkDependencies';
|
|
9
9
|
export { documentDependencies } from './operations/documentDependencies';
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
* Manage project utilities.
|
|
3
3
|
*/
|
|
4
4
|
declare function buildProject(): Promise<void>;
|
|
5
|
-
declare function syncProjectConfigFiles(typeId: string): Promise<void>;
|
|
6
5
|
declare function releaseProject(): Promise<void>;
|
|
7
6
|
declare function syncProjectWithGitHub(): Promise<void>;
|
|
8
7
|
declare function testProject(): void;
|
|
9
|
-
export { buildProject, releaseProject,
|
|
8
|
+
export { buildProject, releaseProject, syncProjectWithGitHub, testProject };
|
package/package.json
CHANGED