Skip to content
Merged
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
2 changes: 0 additions & 2 deletions packages/ui-kit/.eslintignore

This file was deleted.

6 changes: 2 additions & 4 deletions packages/ui-kit/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"extends": "@rocket.chat/eslint-config",
"env": {
"jest": true
}
"extends": "@rocket.chat/eslint-config",
"ignorePatterns": ["dist"]
}
1 change: 0 additions & 1 deletion packages/ui-kit/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions packages/ui-kit/.prettierignore

This file was deleted.

45 changes: 20 additions & 25 deletions packages/ui-kit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,42 +3,37 @@
"version": "0.37.0",
"description": "Interactive UI elements for Rocket.Chat Apps",
"homepage": "https://rocket.chat",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/Rocket.Chat.git"
},
"bugs": {
"url": "https://github.com/RocketChat/Rocket.Chat/issues"
"license": "MIT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"main": "dist/index.js",
"types": "dist/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",
".:build:prepare": "ts-patch install && typia patch",
".:build:tsc": "tsc -p tsconfig.build.json",
"build": "run-s .:build:prepare .:build:clean .:build:tsc",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest"
"test": "jest",
"testunit": "jest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"typia": "~9.7.2"
},
"devDependencies": {
"@babel/core": "~7.28.5",
"@babel/eslint-parser": "~7.28.5",
"@babel/plugin-transform-runtime": "~7.28.5",
"@babel/preset-env": "~7.28.5",
"@rocket.chat/eslint-config": "workspace:~",
"@rocket.chat/icons": "~0.45.0",
"@rocket.chat/jest-presets": "workspace:~",
Expand All @@ -53,13 +48,13 @@
"ts-patch": "^3.3.0",
"typescript": "~5.9.3"
},
"dependencies": {
"typia": "~9.7.2"
},
"peerDependencies": {
"@rocket.chat/icons": "*"
},
"volta": {
"extends": "../../package.json"
},
"publishConfig": {
"access": "public"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist/esm"
"outDir": "./dist"
},
"include": ["./src/**/*"],
"exclude": ["./src/**/*.spec.ts"]
Expand Down
11 changes: 0 additions & 11 deletions packages/ui-kit/tsconfig.cjs.json

This file was deleted.

12 changes: 3 additions & 9 deletions packages/ui-kit/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
{
"extends": "@rocket.chat/tsconfig/base.json",
"compilerOptions": {
"target": "ES5",
"module": "ES2020",
"lib": ["ES2020"],
"target": "es2024",
"module": "esnext",
"lib": ["ES2024"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"plugins": [{ "transform": "typia/lib/transform" }]
},
"include": ["./src/**/*.ts"],
Expand Down
20 changes: 0 additions & 20 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1917,22 +1917,6 @@ __metadata:
languageName: node
linkType: hard

"@babel/plugin-transform-runtime@npm:~7.28.5":
version: 7.28.5
resolution: "@babel/plugin-transform-runtime@npm:7.28.5"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-plugin-utils": "npm:^7.27.1"
babel-plugin-polyfill-corejs2: "npm:^0.4.14"
babel-plugin-polyfill-corejs3: "npm:^0.13.0"
babel-plugin-polyfill-regenerator: "npm:^0.6.5"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0-0
checksum: 10/0d16c90d40dd34f1a981e742ad656ceef619b92d3662ec9ac8d7c8ba79f22bb425c3f9e097333659a4938f03868a53077b1a3aadb7f37504157a0c7af64ec2be
languageName: node
linkType: hard

"@babel/plugin-transform-shorthand-properties@npm:^7.27.1":
version: 7.27.1
resolution: "@babel/plugin-transform-shorthand-properties@npm:7.27.1"
Expand Down Expand Up @@ -10442,10 +10426,6 @@ __metadata:
version: 0.0.0-use.local
resolution: "@rocket.chat/ui-kit@workspace:packages/ui-kit"
dependencies:
"@babel/core": "npm:~7.28.5"
"@babel/eslint-parser": "npm:~7.28.5"
"@babel/plugin-transform-runtime": "npm:~7.28.5"
"@babel/preset-env": "npm:~7.28.5"
"@rocket.chat/eslint-config": "workspace:~"
"@rocket.chat/icons": "npm:~0.45.0"
"@rocket.chat/jest-presets": "workspace:~"
Expand Down
Loading