Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@binance/taro-plugin-platform-binance
Advanced tools
This is the plugin to make tarojs support nezha.
yarn build
In the taro project, add @tarojs/plugin-platform-nezha into config/index.js
# at config/index.js
const config = {
...
plugins: ["@tarojs/plugin-platform-nezha"],
...
}
Then use tarojs-cli run command to start dev process
cd [path-to-taro-project]
npm run build:nezha -- --watch
or build the project without watch
taro build --type nezha
Maybe some one need to specify the plugin to the path of plugin's project instead of to install it by npm. If so, he need to add webpack-chain config into config/index.js
# at config/index.js
const config = {
...
plugins: [`${path-to-taro-platform-plugin}`]
...
mini: {
...
webpackChain(chain, webpack) {
chain.merge({
...
resolve: {
alias: {
"@tarojs/shared": [`${path-to-app-project}/node_modules/@tarojs/shared/dist`]
"@tarojs/plugin-platform-nezha": [`${path-to-taro-platform-plugin}`]
},
},
...
});
},
...
}
...
}
NOTICE @tarojs/shared must be setted to the same package when use path to import plugin, otherwise the compiled app will not register native apis!
FAQs
Taro platform plugin to support BMP
The npm package @binance/taro-plugin-platform-binance receives a total of 0 weekly downloads. As such, @binance/taro-plugin-platform-binance popularity was classified as not popular.
We found that @binance/taro-plugin-platform-binance demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.