npm i --save svelte-native-preprocessor
- 版本:1.0.0
- GitHub: https://github.com/halfnelson/svelte-native-preprocessor
- NPM: https://npmjs.net.cn/package/svelte-native-preprocessor
- 下载量
- 昨天: 0
- 上周: 0
- 上个月: 0
Svelte Native 预处理器
用于Svelte-Native的预处理器。
它执行以下转换,以在使用Svelte-Native时提供更好的开发者体验
- [x] 将
bind:text="{email}"
转换为text="{email}" on:textChanged="{e => email = e.value}"
安装
使用 nativescript-webpack >= 5.0.0
将以下代码添加到您的 svelte.config.js
const svelteNativePreprocessor = require("./svelte-native-preprocessor");
module.exports = {
compilerOptions: {
namespace: 'foreign'
},
preprocess: [svelteNativePreprocessor() /*, other preprocesser eg sveltePreprocessor() here */]
}
许可证
MIT.