https://developer.tuya.com/material/lib ... de=TyEmpty
【安装】部分
$ npm install @ray/components-ty-empty
npm库中没有此包名
此页面上面的【基本信息】中,【NPM 包名】是 @ray-js/components-ty-empty,此包名真实存在
所以安装命令应改为:
$ npm install @ray-js/components-ty-empty
https://developer.tuya.com/material/lib ... de=TyEmpty
【安装】部分
$ npm install @ray/components-ty-empty
npm库中没有此包名
此页面上面的【基本信息】中,【NPM 包名】是 @ray-js/components-ty-empty,此包名真实存在
所以安装命令应改为:
$ npm install @ray-js/components-ty-empty
顺便问一下,这个物料是不能在“面板小程序”中使用吗?安装以后“Tuya MiniApp Tools”中编译报错
package.json
Code: Select all
{
"name": "public-sdm-template",
"version": "1.0.1",
"description": "Panel SDM Template",
"main": "index.js",
"private": true,
"author": "Tuya.inc",
"license": "MIT",
"scripts": {
"start": "ray start --target tuya --bundler=webpack",
"build": "ray build --target tuya --bundler=webpack",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@ray-js/components-ty-empty": "^0.0.3",
"@ray-js/panel-sdk": "^1.10.0",
"@ray-js/ray": "^1.4.45",
"@ray-js/ray-error-catch": "^0.0.20",
"@ray-js/svg": "^0.0.6",
"@reduxjs/toolkit": "^1.9.3",
"clsx": "^1.2.1",
"react-redux": "^7.2.1",
"redux-logger": "^3.0.6"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^9.0.1",
"@ray-js/cli": "^1.4.45",
"@types/lodash-es": "^4.17.6",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.9",
"core-js": "^3.29.1",
"eslint-config-tuya-panel": "^0.4.1",
"husky": "^1.2.0",
"lint-staged": "^10.2.11",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS --config commitlint.config.js",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"git add"
],
"*.{json,md,yml,yaml}": [
"prettier --write",
"git add"
]
}
}