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
48 changes: 25 additions & 23 deletions packages/nutui-harmony/build-profile.json5
Original file line number Diff line number Diff line change
@@ -1,33 +1,35 @@
{
app: {
signingConfigs: [],
products: [
"app": {
"signingConfigs": [],
"products": [
{
name: 'default',
signingConfig: 'default',
compatibleSdkVersion: '4.1.0(11)',
runtimeOS: 'HarmonyOS',
},
"name": "default",
"signingConfig": "default",
"compatibleSdkVersion": "4.1.0(11)",
"runtimeOS": "HarmonyOS"
}
],
buildModeSet: [
"buildModeSet": [
{
name: 'debug',
"name": "debug"
},
{
name: 'release',
},
],
"name": "release"
}
]
},
modules: [
"modules": [
{
name: 'default',
srcPath: './entry',
targets: [
"name": "default",
"srcPath": "./entry",
"targets": [
{
name: 'default',
applyToProducts: ['default'],
},
],
},
],
"name": "default",
"applyToProducts": [
"default"
]
}
]
}
]
}
2 changes: 2 additions & 0 deletions packages/nutui-taro-demo-rn/scripts/taro/adapted.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ exports = module.exports = [
'hoverbutton',
'safearea',
'hoverbuttonitem',
'avatar',
'avatargroup',
Comment on lines +29 to +30
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

全局变量应避免重新赋值。

- exports = module.exports = [
+ const exports = module.exports = [
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
'avatar',
'avatargroup',
const exports = module.exports = [
'avatar',
'avatargroup',

'inputnumber',
'configprovider',
'input',
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export default <>button</>;
import Demo from '@/packages/avatar/demo.taro'
export default Demo
Loading