fix(ui-kit): Missing a peer dependency (#33000)
parent
fd8b321225
commit
c11f3722df
@ -0,0 +1,5 @@ |
||||
--- |
||||
"@rocket.chat/ui-kit": patch |
||||
--- |
||||
|
||||
fix UiKit error message: Failed to resolve module: @rocket.chat/icons |
||||
@ -1,62 +1,67 @@ |
||||
{ |
||||
"name": "@rocket.chat/ui-kit", |
||||
"version": "0.36.0", |
||||
"description": "Interactive UI elements for Rocket.Chat Apps", |
||||
"homepage": "https://rocket.chat", |
||||
"author": { |
||||
"name": "Rocket.Chat", |
||||
"url": "https://rocket.chat/" |
||||
}, |
||||
"license": "MIT", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git+https://github.com/RocketChat/Rocket.Chat.git" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/RocketChat/Rocket.Chat/issues" |
||||
}, |
||||
"main": "dist/cjs/index.js", |
||||
"module": "dist/esm/index.js", |
||||
"types": "dist/esm/index.d.ts", |
||||
"files": [ |
||||
"/dist" |
||||
], |
||||
"publishConfig": { |
||||
"access": "public" |
||||
}, |
||||
"scripts": { |
||||
"build": "run-s .:build:prepare .:build:clean .:build:esm .:build:cjs", |
||||
".:build:prepare": "ts-patch install && typia patch", |
||||
".:build:clean": "rimraf dist", |
||||
".:build:esm": "tsc -p tsconfig.esm.json", |
||||
".:build:cjs": "tsc -p tsconfig.cjs.json", |
||||
"typecheck": "tsc --noEmit", |
||||
"lint": "eslint . --ext .ts,.tsx", |
||||
"test": "jest" |
||||
}, |
||||
"devDependencies": { |
||||
"@babel/core": "~7.21.4", |
||||
"@babel/eslint-parser": "~7.23.3", |
||||
"@babel/plugin-transform-runtime": "~7.21.4", |
||||
"@babel/preset-env": "~7.21.4", |
||||
"@rocket.chat/eslint-config": "workspace:~", |
||||
"@rocket.chat/jest-presets": "workspace:~", |
||||
"@types/jest": "~29.5.12", |
||||
"babel-loader": "~9.1.2", |
||||
"eslint": "~8.45.0", |
||||
"jest": "~29.7.0", |
||||
"npm-run-all": "~4.1.5", |
||||
"prettier": "~2.8.8", |
||||
"rimraf": "~3.0.2", |
||||
"ts-loader": "~9.4.2", |
||||
"ts-node": "~10.9.1", |
||||
"ts-patch": "~3.0.2", |
||||
"typescript": "~5.3.3" |
||||
}, |
||||
"dependencies": { |
||||
"typia": "~5.3.3" |
||||
}, |
||||
"volta": { |
||||
"extends": "../../package.json" |
||||
} |
||||
"name": "@rocket.chat/ui-kit", |
||||
"version": "0.36.0", |
||||
"description": "Interactive UI elements for Rocket.Chat Apps", |
||||
"homepage": "https://rocket.chat", |
||||
"author": { |
||||
"name": "Rocket.Chat", |
||||
"url": "https://rocket.chat/" |
||||
}, |
||||
"license": "MIT", |
||||
"repository": { |
||||
"type": "git", |
||||
"url": "git+https://github.com/RocketChat/Rocket.Chat.git" |
||||
}, |
||||
"bugs": { |
||||
"url": "https://github.com/RocketChat/Rocket.Chat/issues" |
||||
}, |
||||
"main": "dist/cjs/index.js", |
||||
"module": "dist/esm/index.js", |
||||
"types": "dist/esm/index.d.ts", |
||||
"files": [ |
||||
"/dist" |
||||
], |
||||
"publishConfig": { |
||||
"access": "public" |
||||
}, |
||||
"scripts": { |
||||
"build": "run-s .:build:prepare .:build:clean .:build:esm .:build:cjs", |
||||
".:build:prepare": "ts-patch install && typia patch", |
||||
".:build:clean": "rimraf dist", |
||||
".:build:esm": "tsc -p tsconfig.esm.json", |
||||
".:build:cjs": "tsc -p tsconfig.cjs.json", |
||||
"typecheck": "tsc --noEmit", |
||||
"lint": "eslint . --ext .ts,.tsx", |
||||
"test": "jest" |
||||
}, |
||||
"devDependencies": { |
||||
"@babel/core": "~7.21.4", |
||||
"@babel/eslint-parser": "~7.23.3", |
||||
"@babel/plugin-transform-runtime": "~7.21.4", |
||||
"@babel/preset-env": "~7.21.4", |
||||
"@rocket.chat/eslint-config": "workspace:~", |
||||
"@rocket.chat/icons": "^0.36.0", |
||||
"@rocket.chat/jest-presets": "workspace:~", |
||||
"@types/jest": "~29.5.12", |
||||
"babel-loader": "~9.1.2", |
||||
"eslint": "~8.45.0", |
||||
"jest": "~29.7.0", |
||||
"npm-run-all": "~4.1.5", |
||||
"prettier": "~2.8.8", |
||||
"rimraf": "~3.0.2", |
||||
"ts-jest": "~29.1.1", |
||||
"ts-loader": "~9.4.2", |
||||
"ts-node": "~10.9.1", |
||||
"ts-patch": "~3.0.2", |
||||
"typescript": "~5.3.3" |
||||
}, |
||||
"dependencies": { |
||||
"typia": "~5.3.3" |
||||
}, |
||||
"peerDependencies": { |
||||
"@rocket.chat/icons": "*" |
||||
}, |
||||
"volta": { |
||||
"extends": "../../package.json" |
||||
} |
||||
} |
||||
|
||||
Loading…
Reference in new issue