Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(server): Use fluid-internal scope for historian and gitrest packages #23479

Draft
wants to merge 6 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions layerInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
"deps": ["Server-Libs"]
},
"GitRest": {
"dirs": ["server/gitrest/", "server/gitrest/packages/"],
"dirs": ["server/routerlicious/gitrest/"],
"deps": [
"Server-Libs",
"Common-Utils",
Expand All @@ -206,7 +206,7 @@
]
},
"Historian": {
"dirs": ["server/historian/", "server/historian/packages/"],
"dirs": ["server/routerlicious/historian/"],
"deps": [
"Server-Libs",
"Common-Utils",
Expand Down
50 changes: 50 additions & 0 deletions server/gitrest/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

49 changes: 49 additions & 0 deletions server/historian/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions server/routerlicious/feeds/internal-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
@fluid-internal/historian-base
@fluid-internal/historian
@fluid-internal/gitrest-base
@fluid-internal/gitrest
6 changes: 5 additions & 1 deletion server/routerlicious/feeds/internal-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,8 @@ tinylicious
@fluidframework/server-lambdas-driver
@fluidframework/server-lambdas
@fluidframework/server-kafka-orderer
@fluidframework/gitresources
@fluidframework/gitresources
@fluid-internal/historian-base
@fluid-internal/historian
@fluid-internal/gitrest-base
@fluid-internal/gitrest
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@fluidframework/gitrest-base",
"name": "@fluid-internal/gitrest-base",
"version": "1.0.0",
"description": "Git REST API base components",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/gitrest/packages/gitrest-base"
"directory": "server/routerlicious/gitrest/gitrest-base"
},
"license": "MIT",
"author": "Microsoft and contributors",
Expand Down Expand Up @@ -52,15 +52,15 @@
},
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/gitresources": "6.0.0-310414",
"@fluidframework/protocol-base": "6.0.0-314981",
"@fluidframework/gitresources": "workspace:^",
"@fluidframework/protocol-base": "workspace:^",
"@fluidframework/protocol-definitions": "^3.2.0",
"@fluidframework/server-services-client": "6.0.0-314981",
"@fluidframework/server-services-core": "6.0.0-314981",
"@fluidframework/server-services-shared": "6.0.0-314981",
"@fluidframework/server-services-telemetry": "6.0.0-314981",
"@fluidframework/server-services-utils": "6.0.0-314981",
"@fluidframework/server-test-utils": "6.0.0-314981",
"@fluidframework/server-services-client": "workspace:^",
"@fluidframework/server-services-core": "workspace:^",
"@fluidframework/server-services-shared": "workspace:^",
"@fluidframework/server-services-telemetry": "workspace:^",
"@fluidframework/server-services-utils": "workspace:^",
"@fluidframework/server-test-utils": "workspace:^",
"async-mutex": "^0.3.2",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@fluidframework/gitrest",
"name": "@fluid-internal/gitrest",
"version": "1.0.0",
"description": "Entry point of the GitRest core services",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/gitrest/packages/gitrest"
"directory": "server/routerlicious/gitrest/gitrest"
},
"license": "MIT",
"author": "Microsoft and contributors",
Expand All @@ -27,9 +27,9 @@
"tsc": "tsc"
},
"dependencies": {
"@fluidframework/gitrest-base": "workspace:~",
"@fluidframework/server-services-shared": "6.0.0-287165",
"@fluidframework/server-services-utils": "6.0.0-287165",
"@fluid-internal/gitrest-base": "workspace:^",
"@fluidframework/server-services-shared": "workspace:^",
"@fluidframework/server-services-utils": "workspace:^",
"body-parser": "^1.20.3",
"compression": "^1.7.3",
"cors": "^2.8.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as path from "path";
import winston from "winston";
import { runService } from "@fluidframework/server-services-shared";
import { configureLogging } from "@fluidframework/server-services-utils";
import { GitrestResourcesFactory, GitrestRunnerFactory } from "@fluidframework/gitrest-base";
import { GitrestResourcesFactory, GitrestRunnerFactory } from "@fluid-internal/gitrest-base";

const configPath = path.join(__dirname, "../config.json");

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@fluidframework/historian-base",
"name": "@fluid-internal/historian-base",
"version": "0.0.1",
"description": "Base classes for historian",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/historian/packages/historian-base"
"directory": "server/routerlicious/historian/historian-base"
},
"license": "MIT",
"author": "Microsoft and contributors",
Expand Down Expand Up @@ -53,14 +53,14 @@
},
"dependencies": {
"@fluidframework/common-utils": "^1.1.1",
"@fluidframework/gitresources": "6.0.0-310414",
"@fluidframework/gitresources": "workspace:^",
"@fluidframework/protocol-definitions": "^3.2.0",
"@fluidframework/server-services": "6.0.0-314981",
"@fluidframework/server-services-client": "6.0.0-314981",
"@fluidframework/server-services-core": "6.0.0-314981",
"@fluidframework/server-services-shared": "6.0.0-314981",
"@fluidframework/server-services-telemetry": "6.0.0-314981",
"@fluidframework/server-services-utils": "6.0.0-314981",
"@fluidframework/server-services": "workspace:^",
"@fluidframework/server-services-client": "workspace:^",
"@fluidframework/server-services-core": "workspace:^",
"@fluidframework/server-services-shared": "workspace:^",
"@fluidframework/server-services-telemetry": "workspace:^",
"@fluidframework/server-services-utils": "workspace:^",
"@types/ioredis-mock": "^8.2.5",
"axios": "^1.7.7",
"body-parser": "^1.20.3",
Expand All @@ -79,7 +79,7 @@
"devDependencies": {
"@fluidframework/build-common": "^2.0.3",
"@fluidframework/eslint-config-fluid": "^5.1.0",
"@fluidframework/server-test-utils": "6.0.0-314981",
"@fluidframework/server-test-utils": "workspace:^",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@fluidframework/historian",
"name": "@fluid-internal/historian",
"version": "0.0.1",
"description": "Git REST API",
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/historian/packages/historian"
"directory": "server/routerlicious/historian/historian"
},
"license": "MIT",
"author": "Microsoft and contributors",
Expand All @@ -28,10 +28,10 @@
"tslint": "tslint \"src/**/*.ts\""
},
"dependencies": {
"@fluidframework/historian-base": "^0.0.1",
"@fluidframework/server-services-shared": "6.0.0-287165",
"@fluidframework/server-services-utils": "6.0.0-287165",
"body-parser": "^1.20.3",
"@fluid-internal/historian-base": "workspace:^",
"@fluidframework/server-services-shared": "workspace:^",
"@fluidframework/server-services-utils": "workspace:^",
"body-parser": "^1.17.2",
"compression": "^1.7.3",
"cors": "^2.8.5",
"debug": "^4.3.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as path from "path";
import * as winston from "winston";
import { runService } from "@fluidframework/server-services-shared";
import { configureLogging } from "@fluidframework/server-services-utils";
import { HistorianResourcesFactory, HistorianRunnerFactory } from "@fluidframework/historian-base";
import { HistorianResourcesFactory, HistorianRunnerFactory } from "@fluid-internal/historian-base";

const configPath = path.join(__dirname, "../config.json");

Expand Down
Loading
Loading