stigg-api-client 0.1.1 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "0.1.1"
4
+ VERSION = "0.3.0"
5
5
  end
data/project.json CHANGED
@@ -1,3 +1,23 @@
1
1
  {
2
- "$schema": "../../node_modules/nx/schemas/project-schema.json"
2
+ "$schema": "../../node_modules/nx/schemas/project-schema.json",
3
+ "sourceRoot": "packages/api-client-ruby/lib",
4
+ "projectType": "library",
5
+ "implicitDependencies": ["api-client-schema"],
6
+ "targets": {
7
+ "generate": {
8
+ "executor": "@nrwl/workspace:run-commands",
9
+ "options": {
10
+ "command": "./scripts/generate.sh",
11
+ "cwd": "packages/api-client-ruby"
12
+ }
13
+ },
14
+ "publish": {
15
+ "executor": "@nrwl/workspace:run-commands",
16
+ "options": {
17
+ "command": "./scripts/publish.sh",
18
+ "cwd": "packages/api-client-ruby"
19
+ }
20
+ }
21
+ },
22
+ "tags": []
3
23
  }