fastlane-plugin-yarn 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a03b640eb332a040dcf74c381f852e7a3a9cce5d
4
- data.tar.gz: ae4ec5c06550de18744b86d9567d9f11be443c14
3
+ metadata.gz: 02b77e17cbab91378ba015a58aa80e321f76c4fb
4
+ data.tar.gz: 20a196476fd75a4c69f9286e430c7d78358386b1
5
5
  SHA512:
6
- metadata.gz: 99e88542c15c447d9fa6ae8ae886c94a631752c2df33b3a63d6bd7ac2c3085cf1ec766ed9809c6e5ef8be547e2e413e1c1cb3f4576c360306943e009c8a7420a
7
- data.tar.gz: 634851eadf366ec20fc069eb379097478a58fa5e54bfd96863c2d1bef5bbe993f70fc8cff3904c63c65f75ef7dcac419a19f9af43307ba65f53b050efb06f49e
6
+ metadata.gz: a9340eb0a364b8264a6ad7a000ecd670682e0994dc39758594c5ec6d70a9c6d5360b11d39f4e1017d672f2067a0faab9dbb2597efa1488dbb078a08d8c796ebc
7
+ data.tar.gz: be97381e369f4e341d271a1616a3319ab938b5ccd5fde03a613f88d79543467d3480ae3a71d35f51910bc51e0a203de7b40182bd75f7cc543ba53425278a9dab
data/README.md CHANGED
@@ -13,15 +13,19 @@ fastlane add_plugin yarn
13
13
  ## About yarn
14
14
 
15
15
  Execute Yarn commands from your Fastfile
16
-
17
- **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
18
-
16
+
17
+ When using the yarn action in your fastfile, it will install any dependencies that may have changed in your package.json file
18
+ It will by default look for your package.json file in the root directory, or you can choose a different location.
19
+ ```ruby
20
+ yarn(
21
+ task: "test",
22
+ package_path: "../package.json"
23
+ )
24
+ ```
19
25
  ## Example
20
26
 
21
27
  Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
22
28
 
23
- **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
24
-
25
29
  ## Run tests for this plugin
26
30
 
27
31
  To run both the tests, and code style validation, run
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Yarn
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.1"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-yarn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Lesch