Skip to content

Commit

Permalink
New way to publish library
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerlong committed Jan 27, 2025
1 parent 1a8a5be commit cc31b61
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ temp.*
.DS_Store
rcv.spec.ts
test/local/
*.js
*.js.map
*.d.ts
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"prepublishOnly": "yarn reset && yarn compile",
"reset": "lerna exec 'rm -rf lib'",
"test": "yarn workspace @rc-ex/test run jest -w 1 --detectOpenHandles -c jest.config.ts $t",
"upgrade-all": "yarn-upgrade-all -W && yarn workspaces run yarn-upgrade-all && yarn install"
"upgrade-all": "yarn-upgrade-all -W && yarn workspaces run yarn-upgrade-all && yarn install",
"delete-js": "find . -type f \\( -name \"*.js\" -o -name \"*.d.ts\" -o -name \"*.js.map\" \\) -not -path \"*/node_modules/*\" -exec rm -f {} +"
},
"devDependencies": {
"@types/node": "^22.10.10",
Expand Down
4 changes: 2 additions & 2 deletions packages/extensions/debug/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"author": "Tyler Liu <[email protected]>",
"homepage": "https://github.com/ringcentral/ringcentral-extensible/tree/master/packages/extensions/debug",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"main": "src/index.js",
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/ringcentral/ringcentral-extensible.git"
Expand Down
3 changes: 0 additions & 3 deletions packages/extensions/debug/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "lib"
},
"include": ["src"]
}
1 change: 0 additions & 1 deletion test/types.d.ts

This file was deleted.

0 comments on commit cc31b61

Please sign in to comment.