From 84a8788794d0d9cf223f5e3572e1852297a79807 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Thu, 3 Mar 2022 13:20:36 +0100 Subject: [PATCH] Move packages/techdocs-common -> plugins/techdocs-node Signed-off-by: Eric Peterson --- {packages/techdocs-common => plugins/techdocs-node}/.eslintrc.js | 0 {packages/techdocs-common => plugins/techdocs-node}/CHANGELOG.md | 0 {packages/techdocs-common => plugins/techdocs-node}/README.md | 0 .../techdocs-node}/__mocks__/@azure/identity.ts | 0 .../techdocs-node}/__mocks__/@azure/storage-blob.ts | 0 .../techdocs-node}/__mocks__/@google-cloud/storage.ts | 0 .../techdocs-node}/__mocks__/@trendyol-js/openstack-swift-sdk.ts | 0 .../techdocs-node}/__mocks__/aws-sdk.ts | 0 {packages/techdocs-common => plugins/techdocs-node}/api-report.md | 0 {packages/techdocs-common => plugins/techdocs-node}/package.json | 0 .../techdocs-common => plugins/techdocs-node}/src/helpers.test.ts | 0 .../techdocs-common => plugins/techdocs-node}/src/helpers.ts | 0 {packages/techdocs-common => plugins/techdocs-node}/src/index.ts | 0 .../techdocs-common => plugins/techdocs-node}/src/setupTests.ts | 0 .../techdocs-node}/src/stages/generate/__fixtures__/mkdocs.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir2.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_valid_doc_dir.yml | 0 .../generate/__fixtures__/mkdocs_with_additional_plugins.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_with_comments.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_with_edit_uri.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_with_extensions.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_with_repo_url.yml | 0 .../stages/generate/__fixtures__/mkdocs_with_techdocs_plugin.yml | 0 .../src/stages/generate/__fixtures__/mkdocs_without_plugins.yml | 0 .../techdocs-node}/src/stages/generate/generators.test.ts | 0 .../techdocs-node}/src/stages/generate/generators.ts | 0 .../techdocs-node}/src/stages/generate/helpers.test.ts | 0 .../techdocs-node}/src/stages/generate/helpers.ts | 0 .../techdocs-node}/src/stages/generate/index.ts | 0 .../techdocs-node}/src/stages/generate/mkDocsPatchers.ts | 0 .../techdocs-node}/src/stages/generate/techdocs.test.ts | 0 .../techdocs-node}/src/stages/generate/techdocs.ts | 0 .../techdocs-node}/src/stages/generate/types.ts | 0 .../techdocs-common => plugins/techdocs-node}/src/stages/index.ts | 0 .../techdocs-node}/src/stages/prepare/dir.test.ts | 0 .../techdocs-node}/src/stages/prepare/dir.ts | 0 .../techdocs-node}/src/stages/prepare/index.ts | 0 .../techdocs-node}/src/stages/prepare/preparers.ts | 0 .../techdocs-node}/src/stages/prepare/types.ts | 0 .../techdocs-node}/src/stages/prepare/url.ts | 0 .../techdocs-node}/src/stages/publish/awsS3.test.ts | 0 .../techdocs-node}/src/stages/publish/awsS3.ts | 0 .../techdocs-node}/src/stages/publish/azureBlobStorage.test.ts | 0 .../techdocs-node}/src/stages/publish/azureBlobStorage.ts | 0 .../techdocs-node}/src/stages/publish/googleStorage.test.ts | 0 .../techdocs-node}/src/stages/publish/googleStorage.ts | 0 .../techdocs-node}/src/stages/publish/helpers.test.ts | 0 .../techdocs-node}/src/stages/publish/helpers.ts | 0 .../techdocs-node}/src/stages/publish/index.ts | 0 .../techdocs-node}/src/stages/publish/local.test.ts | 0 .../techdocs-node}/src/stages/publish/local.ts | 0 .../src/stages/publish/migrations/GoogleMigration.ts | 0 .../techdocs-node}/src/stages/publish/migrations/index.ts | 0 .../techdocs-node}/src/stages/publish/openStackSwift.test.ts | 0 .../techdocs-node}/src/stages/publish/openStackSwift.ts | 0 .../techdocs-node}/src/stages/publish/publish.test.ts | 0 .../techdocs-node}/src/stages/publish/publish.ts | 0 .../techdocs-node}/src/stages/publish/types.ts | 0 .../techdocs-node}/src/techdocsTypes.ts | 0 .../techdocs-node}/src/testUtils/StorageFilesMock.ts | 0 .../techdocs-node}/src/testUtils/types.ts | 0 62 files changed, 0 insertions(+), 0 deletions(-) rename {packages/techdocs-common => plugins/techdocs-node}/.eslintrc.js (100%) rename {packages/techdocs-common => plugins/techdocs-node}/CHANGELOG.md (100%) rename {packages/techdocs-common => plugins/techdocs-node}/README.md (100%) rename {packages/techdocs-common => plugins/techdocs-node}/__mocks__/@azure/identity.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/__mocks__/@azure/storage-blob.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/__mocks__/@google-cloud/storage.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/__mocks__/@trendyol-js/openstack-swift-sdk.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/__mocks__/aws-sdk.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/api-report.md (100%) rename {packages/techdocs-common => plugins/techdocs-node}/package.json (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/helpers.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/helpers.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/index.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/setupTests.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir2.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_valid_doc_dir.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_with_additional_plugins.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_with_comments.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_with_edit_uri.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_with_extensions.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_with_repo_url.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_with_techdocs_plugin.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/__fixtures__/mkdocs_without_plugins.yml (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/generators.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/generators.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/helpers.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/helpers.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/index.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/mkDocsPatchers.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/techdocs.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/techdocs.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/generate/types.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/index.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/prepare/dir.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/prepare/dir.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/prepare/index.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/prepare/preparers.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/prepare/types.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/prepare/url.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/awsS3.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/awsS3.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/azureBlobStorage.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/azureBlobStorage.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/googleStorage.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/googleStorage.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/helpers.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/helpers.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/index.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/local.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/local.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/migrations/GoogleMigration.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/migrations/index.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/openStackSwift.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/openStackSwift.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/publish.test.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/publish.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/stages/publish/types.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/techdocsTypes.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/testUtils/StorageFilesMock.ts (100%) rename {packages/techdocs-common => plugins/techdocs-node}/src/testUtils/types.ts (100%) diff --git a/packages/techdocs-common/.eslintrc.js b/plugins/techdocs-node/.eslintrc.js similarity index 100% rename from packages/techdocs-common/.eslintrc.js rename to plugins/techdocs-node/.eslintrc.js diff --git a/packages/techdocs-common/CHANGELOG.md b/plugins/techdocs-node/CHANGELOG.md similarity index 100% rename from packages/techdocs-common/CHANGELOG.md rename to plugins/techdocs-node/CHANGELOG.md diff --git a/packages/techdocs-common/README.md b/plugins/techdocs-node/README.md similarity index 100% rename from packages/techdocs-common/README.md rename to plugins/techdocs-node/README.md diff --git a/packages/techdocs-common/__mocks__/@azure/identity.ts b/plugins/techdocs-node/__mocks__/@azure/identity.ts similarity index 100% rename from packages/techdocs-common/__mocks__/@azure/identity.ts rename to plugins/techdocs-node/__mocks__/@azure/identity.ts diff --git a/packages/techdocs-common/__mocks__/@azure/storage-blob.ts b/plugins/techdocs-node/__mocks__/@azure/storage-blob.ts similarity index 100% rename from packages/techdocs-common/__mocks__/@azure/storage-blob.ts rename to plugins/techdocs-node/__mocks__/@azure/storage-blob.ts diff --git a/packages/techdocs-common/__mocks__/@google-cloud/storage.ts b/plugins/techdocs-node/__mocks__/@google-cloud/storage.ts similarity index 100% rename from packages/techdocs-common/__mocks__/@google-cloud/storage.ts rename to plugins/techdocs-node/__mocks__/@google-cloud/storage.ts diff --git a/packages/techdocs-common/__mocks__/@trendyol-js/openstack-swift-sdk.ts b/plugins/techdocs-node/__mocks__/@trendyol-js/openstack-swift-sdk.ts similarity index 100% rename from packages/techdocs-common/__mocks__/@trendyol-js/openstack-swift-sdk.ts rename to plugins/techdocs-node/__mocks__/@trendyol-js/openstack-swift-sdk.ts diff --git a/packages/techdocs-common/__mocks__/aws-sdk.ts b/plugins/techdocs-node/__mocks__/aws-sdk.ts similarity index 100% rename from packages/techdocs-common/__mocks__/aws-sdk.ts rename to plugins/techdocs-node/__mocks__/aws-sdk.ts diff --git a/packages/techdocs-common/api-report.md b/plugins/techdocs-node/api-report.md similarity index 100% rename from packages/techdocs-common/api-report.md rename to plugins/techdocs-node/api-report.md diff --git a/packages/techdocs-common/package.json b/plugins/techdocs-node/package.json similarity index 100% rename from packages/techdocs-common/package.json rename to plugins/techdocs-node/package.json diff --git a/packages/techdocs-common/src/helpers.test.ts b/plugins/techdocs-node/src/helpers.test.ts similarity index 100% rename from packages/techdocs-common/src/helpers.test.ts rename to plugins/techdocs-node/src/helpers.test.ts diff --git a/packages/techdocs-common/src/helpers.ts b/plugins/techdocs-node/src/helpers.ts similarity index 100% rename from packages/techdocs-common/src/helpers.ts rename to plugins/techdocs-node/src/helpers.ts diff --git a/packages/techdocs-common/src/index.ts b/plugins/techdocs-node/src/index.ts similarity index 100% rename from packages/techdocs-common/src/index.ts rename to plugins/techdocs-node/src/index.ts diff --git a/packages/techdocs-common/src/setupTests.ts b/plugins/techdocs-node/src/setupTests.ts similarity index 100% rename from packages/techdocs-common/src/setupTests.ts rename to plugins/techdocs-node/src/setupTests.ts diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir2.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir2.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir2.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_invalid_doc_dir2.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_valid_doc_dir.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_valid_doc_dir.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_valid_doc_dir.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_valid_doc_dir.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_additional_plugins.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_additional_plugins.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_additional_plugins.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_additional_plugins.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_comments.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_comments.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_comments.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_comments.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_edit_uri.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_edit_uri.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_edit_uri.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_edit_uri.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_extensions.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_extensions.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_extensions.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_extensions.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_repo_url.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_repo_url.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_repo_url.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_repo_url.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_techdocs_plugin.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_techdocs_plugin.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_with_techdocs_plugin.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_with_techdocs_plugin.yml diff --git a/packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_without_plugins.yml b/plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_without_plugins.yml similarity index 100% rename from packages/techdocs-common/src/stages/generate/__fixtures__/mkdocs_without_plugins.yml rename to plugins/techdocs-node/src/stages/generate/__fixtures__/mkdocs_without_plugins.yml diff --git a/packages/techdocs-common/src/stages/generate/generators.test.ts b/plugins/techdocs-node/src/stages/generate/generators.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/generators.test.ts rename to plugins/techdocs-node/src/stages/generate/generators.test.ts diff --git a/packages/techdocs-common/src/stages/generate/generators.ts b/plugins/techdocs-node/src/stages/generate/generators.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/generators.ts rename to plugins/techdocs-node/src/stages/generate/generators.ts diff --git a/packages/techdocs-common/src/stages/generate/helpers.test.ts b/plugins/techdocs-node/src/stages/generate/helpers.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/helpers.test.ts rename to plugins/techdocs-node/src/stages/generate/helpers.test.ts diff --git a/packages/techdocs-common/src/stages/generate/helpers.ts b/plugins/techdocs-node/src/stages/generate/helpers.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/helpers.ts rename to plugins/techdocs-node/src/stages/generate/helpers.ts diff --git a/packages/techdocs-common/src/stages/generate/index.ts b/plugins/techdocs-node/src/stages/generate/index.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/index.ts rename to plugins/techdocs-node/src/stages/generate/index.ts diff --git a/packages/techdocs-common/src/stages/generate/mkDocsPatchers.ts b/plugins/techdocs-node/src/stages/generate/mkDocsPatchers.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/mkDocsPatchers.ts rename to plugins/techdocs-node/src/stages/generate/mkDocsPatchers.ts diff --git a/packages/techdocs-common/src/stages/generate/techdocs.test.ts b/plugins/techdocs-node/src/stages/generate/techdocs.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/techdocs.test.ts rename to plugins/techdocs-node/src/stages/generate/techdocs.test.ts diff --git a/packages/techdocs-common/src/stages/generate/techdocs.ts b/plugins/techdocs-node/src/stages/generate/techdocs.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/techdocs.ts rename to plugins/techdocs-node/src/stages/generate/techdocs.ts diff --git a/packages/techdocs-common/src/stages/generate/types.ts b/plugins/techdocs-node/src/stages/generate/types.ts similarity index 100% rename from packages/techdocs-common/src/stages/generate/types.ts rename to plugins/techdocs-node/src/stages/generate/types.ts diff --git a/packages/techdocs-common/src/stages/index.ts b/plugins/techdocs-node/src/stages/index.ts similarity index 100% rename from packages/techdocs-common/src/stages/index.ts rename to plugins/techdocs-node/src/stages/index.ts diff --git a/packages/techdocs-common/src/stages/prepare/dir.test.ts b/plugins/techdocs-node/src/stages/prepare/dir.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/prepare/dir.test.ts rename to plugins/techdocs-node/src/stages/prepare/dir.test.ts diff --git a/packages/techdocs-common/src/stages/prepare/dir.ts b/plugins/techdocs-node/src/stages/prepare/dir.ts similarity index 100% rename from packages/techdocs-common/src/stages/prepare/dir.ts rename to plugins/techdocs-node/src/stages/prepare/dir.ts diff --git a/packages/techdocs-common/src/stages/prepare/index.ts b/plugins/techdocs-node/src/stages/prepare/index.ts similarity index 100% rename from packages/techdocs-common/src/stages/prepare/index.ts rename to plugins/techdocs-node/src/stages/prepare/index.ts diff --git a/packages/techdocs-common/src/stages/prepare/preparers.ts b/plugins/techdocs-node/src/stages/prepare/preparers.ts similarity index 100% rename from packages/techdocs-common/src/stages/prepare/preparers.ts rename to plugins/techdocs-node/src/stages/prepare/preparers.ts diff --git a/packages/techdocs-common/src/stages/prepare/types.ts b/plugins/techdocs-node/src/stages/prepare/types.ts similarity index 100% rename from packages/techdocs-common/src/stages/prepare/types.ts rename to plugins/techdocs-node/src/stages/prepare/types.ts diff --git a/packages/techdocs-common/src/stages/prepare/url.ts b/plugins/techdocs-node/src/stages/prepare/url.ts similarity index 100% rename from packages/techdocs-common/src/stages/prepare/url.ts rename to plugins/techdocs-node/src/stages/prepare/url.ts diff --git a/packages/techdocs-common/src/stages/publish/awsS3.test.ts b/plugins/techdocs-node/src/stages/publish/awsS3.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/awsS3.test.ts rename to plugins/techdocs-node/src/stages/publish/awsS3.test.ts diff --git a/packages/techdocs-common/src/stages/publish/awsS3.ts b/plugins/techdocs-node/src/stages/publish/awsS3.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/awsS3.ts rename to plugins/techdocs-node/src/stages/publish/awsS3.ts diff --git a/packages/techdocs-common/src/stages/publish/azureBlobStorage.test.ts b/plugins/techdocs-node/src/stages/publish/azureBlobStorage.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/azureBlobStorage.test.ts rename to plugins/techdocs-node/src/stages/publish/azureBlobStorage.test.ts diff --git a/packages/techdocs-common/src/stages/publish/azureBlobStorage.ts b/plugins/techdocs-node/src/stages/publish/azureBlobStorage.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/azureBlobStorage.ts rename to plugins/techdocs-node/src/stages/publish/azureBlobStorage.ts diff --git a/packages/techdocs-common/src/stages/publish/googleStorage.test.ts b/plugins/techdocs-node/src/stages/publish/googleStorage.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/googleStorage.test.ts rename to plugins/techdocs-node/src/stages/publish/googleStorage.test.ts diff --git a/packages/techdocs-common/src/stages/publish/googleStorage.ts b/plugins/techdocs-node/src/stages/publish/googleStorage.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/googleStorage.ts rename to plugins/techdocs-node/src/stages/publish/googleStorage.ts diff --git a/packages/techdocs-common/src/stages/publish/helpers.test.ts b/plugins/techdocs-node/src/stages/publish/helpers.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/helpers.test.ts rename to plugins/techdocs-node/src/stages/publish/helpers.test.ts diff --git a/packages/techdocs-common/src/stages/publish/helpers.ts b/plugins/techdocs-node/src/stages/publish/helpers.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/helpers.ts rename to plugins/techdocs-node/src/stages/publish/helpers.ts diff --git a/packages/techdocs-common/src/stages/publish/index.ts b/plugins/techdocs-node/src/stages/publish/index.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/index.ts rename to plugins/techdocs-node/src/stages/publish/index.ts diff --git a/packages/techdocs-common/src/stages/publish/local.test.ts b/plugins/techdocs-node/src/stages/publish/local.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/local.test.ts rename to plugins/techdocs-node/src/stages/publish/local.test.ts diff --git a/packages/techdocs-common/src/stages/publish/local.ts b/plugins/techdocs-node/src/stages/publish/local.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/local.ts rename to plugins/techdocs-node/src/stages/publish/local.ts diff --git a/packages/techdocs-common/src/stages/publish/migrations/GoogleMigration.ts b/plugins/techdocs-node/src/stages/publish/migrations/GoogleMigration.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/migrations/GoogleMigration.ts rename to plugins/techdocs-node/src/stages/publish/migrations/GoogleMigration.ts diff --git a/packages/techdocs-common/src/stages/publish/migrations/index.ts b/plugins/techdocs-node/src/stages/publish/migrations/index.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/migrations/index.ts rename to plugins/techdocs-node/src/stages/publish/migrations/index.ts diff --git a/packages/techdocs-common/src/stages/publish/openStackSwift.test.ts b/plugins/techdocs-node/src/stages/publish/openStackSwift.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/openStackSwift.test.ts rename to plugins/techdocs-node/src/stages/publish/openStackSwift.test.ts diff --git a/packages/techdocs-common/src/stages/publish/openStackSwift.ts b/plugins/techdocs-node/src/stages/publish/openStackSwift.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/openStackSwift.ts rename to plugins/techdocs-node/src/stages/publish/openStackSwift.ts diff --git a/packages/techdocs-common/src/stages/publish/publish.test.ts b/plugins/techdocs-node/src/stages/publish/publish.test.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/publish.test.ts rename to plugins/techdocs-node/src/stages/publish/publish.test.ts diff --git a/packages/techdocs-common/src/stages/publish/publish.ts b/plugins/techdocs-node/src/stages/publish/publish.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/publish.ts rename to plugins/techdocs-node/src/stages/publish/publish.ts diff --git a/packages/techdocs-common/src/stages/publish/types.ts b/plugins/techdocs-node/src/stages/publish/types.ts similarity index 100% rename from packages/techdocs-common/src/stages/publish/types.ts rename to plugins/techdocs-node/src/stages/publish/types.ts diff --git a/packages/techdocs-common/src/techdocsTypes.ts b/plugins/techdocs-node/src/techdocsTypes.ts similarity index 100% rename from packages/techdocs-common/src/techdocsTypes.ts rename to plugins/techdocs-node/src/techdocsTypes.ts diff --git a/packages/techdocs-common/src/testUtils/StorageFilesMock.ts b/plugins/techdocs-node/src/testUtils/StorageFilesMock.ts similarity index 100% rename from packages/techdocs-common/src/testUtils/StorageFilesMock.ts rename to plugins/techdocs-node/src/testUtils/StorageFilesMock.ts diff --git a/packages/techdocs-common/src/testUtils/types.ts b/plugins/techdocs-node/src/testUtils/types.ts similarity index 100% rename from packages/techdocs-common/src/testUtils/types.ts rename to plugins/techdocs-node/src/testUtils/types.ts