我如何使用新工作流程生成 nativescript 插件 tarball?
How do i generate a nativescript plugin tarball with the new workflow?
我正在尝试围绕原生 iOS/Android SDK 构建插件。我想知道最终生成一个 my-plugin.tgz 文件,这样我就可以在本地使用它而无需发布它。
我已经使用 Nativescript 6.x 完成了此操作,但我想知道如何使用 Nativescript 7.x.
中的新工作流程来完成此操作
谢谢。
在 运行从 npm start
执行 build
命令后,您将得到一个 dist
目录,其结构如下
dist
|- packages
|- your-plugin-name
cd
进入 packages
目录和 运行 npm pack your-plugin-name
并且您应该在可以在本地使用的同一目录中获得 .tgz 文件
最新种子有以下说明
Publish to NPM When you have everything ready to publish: Bump the version number in src/package.json
Go to publish and execute publish.sh (run chmod +x *.sh if the file isn't executable)
If you just want to create a package, go to publish folder and execute pack.sh. The package will be created in publish/package folder.
https://github.com/NativeScript/nativescript-plugin-seed#publish-to-npm
我正在尝试围绕原生 iOS/Android SDK 构建插件。我想知道最终生成一个 my-plugin.tgz 文件,这样我就可以在本地使用它而无需发布它。 我已经使用 Nativescript 6.x 完成了此操作,但我想知道如何使用 Nativescript 7.x.
中的新工作流程来完成此操作谢谢。
在 运行从 npm start
执行 build
命令后,您将得到一个 dist
目录,其结构如下
dist
|- packages
|- your-plugin-name
cd
进入 packages
目录和 运行 npm pack your-plugin-name
并且您应该在可以在本地使用的同一目录中获得 .tgz 文件
最新种子有以下说明
Publish to NPM When you have everything ready to publish: Bump the version number in src/package.json Go to publish and execute publish.sh (run chmod +x *.sh if the file isn't executable) If you just want to create a package, go to publish folder and execute pack.sh. The package will be created in publish/package folder.
https://github.com/NativeScript/nativescript-plugin-seed#publish-to-npm