Compile asserts only with rush (#10085)

This commit is contained in:
Andrey Sobolev
2025-10-14 22:29:09 +07:00
committed by GitHub
parent aa5111b743
commit 6d43e58b95
58 changed files with 1799 additions and 59 deletions
+31 -1
View File
@@ -1,7 +1,15 @@
{
"name": "@hcengineering/github-assets",
"version": "0.7.0",
"main": "src/index.ts",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"files": [
"lib",
"types",
"src",
"assets",
"lang"
],
"author": "Hardcore Engineering Inc.",
"template": "@hcengineering/assets-package",
"scripts": {
@@ -34,5 +42,27 @@
"dependencies": {
"@hcengineering/platform": "^0.7.5",
"@hcengineering/github": "^0.7.0"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
},
"./lang/*.json": {
"require": "./lang/*.json",
"import": "./lang/*.json"
},
"./lang": {
"require": "./lang",
"import": "./lang"
},
"./assets": {
"require": "./assets",
"import": "./assets"
},
"./assets/*.svg": {
"require": "./assets/*.svg",
"import": "./assets/*.svg"
}
}
}