Skip to content

Commit

Permalink
ci: publish config and ovh-at-internet packages
Browse files Browse the repository at this point in the history
 Core-api package has a dependency on Config and At Internet packages

Signed-off-by: Anoop N <[email protected]>
  • Loading branch information
anooparveti committed Dec 19, 2024
1 parent 1526532 commit 57e8246
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 22 deletions.
10 changes: 7 additions & 3 deletions packages/components/ovh-at-internet/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@ovh-ux/ovh-at-internet",
"version": "0.18.0",
"private": true,
"description": "ATInternet tracking library for OVHcloud.",
"keywords": [
"at-internet",
Expand Down Expand Up @@ -35,8 +34,13 @@
"start:watch": "lerna exec --stream --parallel --scope='@ovh-ux/manager-config' --include-dependencies -- yarn run dev:watch"
},
"dependencies": {
"@ovh-ux/manager-config": "^8.0.1",
"@types/lodash-es": "^4.17.5",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@ovh-ux/manager-config": "^8.0.1",
"@types/lodash-es": "^4.17.5"
},
"peerDependencies": {
"@ovh-ux/manager-config": "^8.0.1"
}
}
15 changes: 10 additions & 5 deletions packages/manager/modules/config/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@ovh-ux/manager-config",
"version": "8.0.1",
"private": true,
"description": "Retrieve configuration based on the environment.",
"homepage": "https://github.com/ovh/manager/tree/master/packages/manager/modules/config#readme",
"bugs": {
Expand All @@ -13,10 +12,11 @@
"directory": "packages/manager/modules/config"
},
"license": "BSD-3-Clause",
"author": "OVH SAS",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "./dist/types",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
Expand All @@ -31,7 +31,12 @@
},
"dependencies": {
"@ovh-ux/ovh-reket": "^2.1.7",
"@ovh-ux/request-tagger": "^0.4.0",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@ovh-ux/request-tagger": "^0.4.0"
},
"peerDependencies": {
"@ovh-ux/request-tagger": "^0.4.0"
}
}
2 changes: 1 addition & 1 deletion packages/manager/modules/config/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const RESTRICTED_DEFAULTS: Record<string, string> = {
publicURL: '/manager/restricted/',
};

export { Environment, User };
export { Environment };
export * from './locale';

export * from './locale/locale.constants';
Expand Down
25 changes: 12 additions & 13 deletions packages/manager/modules/config/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
{
"compilerOptions": {
"target": "es2015",
"moduleResolution": "Node",
"lib": ["dom"],
"module": "esnext",
"removeComments": true,
"lib": ["dom", "es2020"],
"target": "es2020",
"types": ["vite/client", "node"],
"module": "ES2020",
"outDir": "dist",
"esModuleInterop": true,
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"sourceMap": true,
"allowJs": true,
"moduleResolution": "Node",
"isolatedModules": true,
"declaration": true,
"skipLibCheck": true,
"declarationDir": "dist/types"
"declarationDir": "./dist/types",
"jsx": "react"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
"exclude": ["node_modules", "dist", "types", "**/__tests__"]
}

0 comments on commit 57e8246

Please sign in to comment.