摘要:
Add rn-nodeify to your devDependencies in package.json: Add the following to the scripts section of the same file: 阅读全文
摘要:
由于是菜鸟没使用ES标准,而引入的vue-ueditor使用了ES标准,所以编译会报错,解决办法如下: npm install babel-preset-es2015 --save-dev 然后需要在webpack.base.conf.js文件中加入如下代码 阅读全文
摘要:
Yarn是Facebook发布的一款依赖管理工具,它比npm更快、更高效。 与NPM命令对照 阅读全文
摘要:
问题解决 直观上看是没有删除某个文件,产生的IOException异常,实际上是因为上次编译导致的缓存没有清空导致的。 进入到android目录下运行下面代码清除上次打包时的缓存: ./gradlew clean 阅读全文