Skip to content

Commit

Permalink
chore(package): update package config
Browse files Browse the repository at this point in the history
  • Loading branch information
unadlib committed Mar 1, 2024
1 parent ac49176 commit f832dfd
Show file tree
Hide file tree
Showing 9 changed files with 44 additions and 18 deletions.
6 changes: 4 additions & 2 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
{
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
"useWorkspaces": true,
"version": "0.1.0",
"version": "0.1.1",
"changelog": true,
"changelogPreset": {
"name": "conventionalcommits",
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"issuePrefixes": ["#"],
"issuePrefixes": [
"#"
],
"types": [
{
"type": "feat",
Expand Down
7 changes: 5 additions & 2 deletions packages/builder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-builder",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c ../../rollup.config.ts --configPlugin typescript",
"build:doc": "rimraf docs && typedoc --out docs src/index.ts --plugin typedoc-plugin-markdown --readme none --skipErrorChecking",
Expand All @@ -33,7 +36,7 @@
"webpack": "^5.75.0"
},
"dependencies": {
"@ringcentral/mfe-shared": "^0.1.0",
"@ringcentral/mfe-shared": "^0.1.1",
"yargs": "17.6.2"
}
}
9 changes: 6 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-core",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c ../../rollup.config.ts --configPlugin typescript",
"tsc": "tsc --noEmit",
Expand All @@ -22,8 +25,8 @@
"@ringcentral/mfe-shared": "^0.1.0"
},
"dependencies": {
"@ringcentral/mfe-shared": "^0.1.0",
"@ringcentral/mfe-transport": "^0.1.0"
"@ringcentral/mfe-shared": "^0.1.1",
"@ringcentral/mfe-transport": "^0.1.1"
},
"keywords": [
"Micro Frontends"
Expand Down
7 changes: 5 additions & 2 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-logger",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c ../../rollup.config.ts --configPlugin typescript",
"tsc": "tsc --noEmit",
Expand All @@ -22,7 +25,7 @@
"@ringcentral/mfe-shared": "^0.1.0"
},
"dependencies": {
"@ringcentral/mfe-shared": "^0.1.0",
"@ringcentral/mfe-shared": "^0.1.1",
"@roarr/browser-log-writer": "1.3.0",
"dexie": "3.2.4",
"file-saver": "2.0.5",
Expand Down
7 changes: 5 additions & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-react",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c ../../rollup.config.ts --configPlugin typescript",
"build:doc": "rimraf docs && typedoc --out docs src/index.ts --plugin typedoc-plugin-markdown --readme none --skipErrorChecking",
Expand All @@ -28,7 +31,7 @@
"react": "^17.0.2"
},
"dependencies": {
"@ringcentral/mfe-core": "^0.1.0"
"@ringcentral/mfe-core": "^0.1.1"
},
"devDependencies": {
"@testing-library/react": "^12.1.5",
Expand Down
7 changes: 5 additions & 2 deletions packages/sentry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-sentry",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn build:code",
"build:code": "rollup -c ../../rollup.config.ts --configPlugin typescript",
Expand All @@ -28,7 +31,7 @@
"@ringcentral/mfe-shared": "^0.1.0"
},
"dependencies": {
"@ringcentral/mfe-shared": "^0.1.0",
"@ringcentral/mfe-shared": "^0.1.1",
"@sentry/browser": "^7.99.0",
"@sentry/tracing": "^7.99.0"
}
Expand Down
7 changes: 5 additions & 2 deletions packages/service-worker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-service-worker",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c ./rollup.config.ts --configPlugin typescript",
"tsc": "tsc --noEmit",
Expand Down Expand Up @@ -39,7 +42,7 @@
"webpack": "^5.75.0"
},
"dependencies": {
"@ringcentral/mfe-shared": "^0.1.0",
"@ringcentral/mfe-shared": "^0.1.1",
"crypto": "^1.0.1",
"ts-md5": "1.3.1",
"workbox-window": "6.5.4"
Expand Down
5 changes: 4 additions & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-shared",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "yarn build:code && yarn build:schema",
"build:code": "rollup -c ../../rollup.config.ts --configPlugin typescript",
Expand Down
7 changes: 5 additions & 2 deletions packages/transport/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ringcentral/mfe-transport",
"version": "0.1.0",
"version": "0.1.1",
"description": "A micro frontends framework for building Web applications",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand All @@ -9,6 +9,9 @@
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c ../../rollup.config.ts --configPlugin typescript",
"tsc": "tsc --noEmit",
Expand All @@ -28,7 +31,7 @@
"data-transport": "^4.3.5"
},
"dependencies": {
"@ringcentral/mfe-shared": "^0.1.0",
"@ringcentral/mfe-shared": "^0.1.1",
"data-transport": "^4.3.5"
}
}

0 comments on commit f832dfd

Please sign in to comment.