@corva/create-app 0.66.0-0 → 0.66.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -175,7 +175,7 @@ Options:
175
175
  --ignored-files [string...] Patterns to skip zip (default: [])
176
176
  --env [string] Environment to use (choices: "qa", "staging", "production", default: "qa")
177
177
  --api-key [string] Pre generated API key for authorization during app upload
178
- --app-key [string] Explicitly set appKey that CLI is going to use. Otherwise it will be taken from manifest.json file.
178
+ --app-key [string] Explicitly set appKey that CLI is going to use. Otherwise it will be taken from manifest.json file. [works only for Front-End apps currently]
179
179
  --notes [string] Add custom notes to published app
180
180
  --label [string] Put a label on the release (choices: "DEV", "BETA", "PROD")
181
181
  --remove-on-fail [boolean] Remove release if it fails during deployment (default: false)
@@ -0,0 +1 @@
1
+ module.exports = { extends: '@corva/eslint-config-node' };
@@ -0,0 +1 @@
1
+ "@corva/eslint-config-node/prettier"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@corva/create-app",
3
- "version": "0.66.0-0",
3
+ "version": "0.66.0",
4
4
  "private": false,
5
5
  "description": "Create an app to use it in CORVA.AI",
6
6
  "keywords": [
@@ -9,7 +9,6 @@ jobs:
9
9
  Lint-and-Test:
10
10
  runs-on: ubuntu-latest
11
11
  steps:
12
-
13
12
  - name: 'Lint and test'
14
13
  uses: corva-ai/gh-actions/shared-dc-workflows/lint-and-test@develop
15
14
  with:
@@ -12,18 +12,6 @@ jobs:
12
12
  id: shared-workflow
13
13
  uses: corva-ai/gh-actions/shared-dc-workflows/develop@develop
14
14
  with:
15
- is-upload-to-qa: true
16
15
  qa-api-key: ${{ secrets.API_KEY_QA }}
17
- is-upload-to-prod: false
18
16
  prod-api-key: ${{ secrets.API_KEY }}
19
17
  npm-token: ${{ secrets.CORVA_NPM_TOKEN }}
20
- github-pr-approve-token: ${{ secrets.GH_ACTIONS_AUTOMATION }}
21
- # github-pr-approve-token: ${{ secrets.GH_ACTIONS_AUTOMATION }}
22
- # - name: trigger circle ci develop e2e tests
23
- # if: ${{ steps.shared-workflow.outputs.is-release-created }}
24
- # run: |
25
- # curl --request POST \
26
- # --url https://circleci.com/api/v2/project/gh/corva-ai/${{ github.event.repository.name }}/pipeline \
27
- # --header 'Circle-Token: ${{ secrets.CIRCLE_CI_API_TOKEN }}' \
28
- # --header 'content-type: application/json' \
29
- # --data '{"branch": "develop", "parameters":{"run_develop_e2e_tests_workflow":true,"app_repository_name":"${{ github.event.repository.name }}"}}'
@@ -10,7 +10,5 @@ jobs:
10
10
  - name: branch deletion flow
11
11
  uses: corva-ai/gh-actions/shared-dc-workflows/feat-fix-delete@develop
12
12
  with:
13
- is-delete-from-qa: true
14
13
  qa-api-key: ${{ secrets.API_KEY_QA }}
15
- is-delete-from-prod: false
16
14
  prod-api-key: ${{ secrets.API_KEY }}
@@ -16,17 +16,8 @@ jobs:
16
16
  - name: feat/fix flow
17
17
  uses: corva-ai/gh-actions/shared-dc-workflows/feat-fix@develop
18
18
  with:
19
- is-upload-to-qa: true
20
19
  qa-api-key: ${{ secrets.API_KEY_QA }}
21
- is-upload-to-prod: false
22
20
  prod-api-key: ${{ secrets.API_KEY }}
23
21
  npm-token: ${{ secrets.CORVA_NPM_TOKEN }}
24
22
  jira-user-email: ${{ secrets.JIRA_AUTOTEST_USERNAME }}
25
23
  jira-api-token: ${{ secrets.JIRA_AUTOTEST_API_TOKEN }}
26
- # - name: trigger circle ci branch e2e tests
27
- # run: |
28
- # curl --request POST \
29
- # --url https://circleci.com/api/v2/project/gh/corva-ai/${{ github.event.repository.name }}/pipeline \
30
- # --header 'Circle-Token: ${{ secrets.CIRCLE_CI_API_TOKEN }}' \
31
- # --header 'content-type: application/json' \
32
- # --data '{"branch": "${{ github.ref_name }}", "parameters":{"run_branch_e2e_tests_workflow":true,"app_repository_name":"${{ github.event.repository.name }}"}}'
@@ -11,8 +11,6 @@ jobs:
11
11
  - name: release-fix/X.X.X flow
12
12
  uses: corva-ai/gh-actions/shared-dc-workflows/release-fix-X.X.X@develop
13
13
  with:
14
- is-upload-to-qa: true
15
14
  qa-api-key: ${{ secrets.API_KEY_QA }}
16
- is-upload-to-prod: false
17
15
  prod-api-key: ${{ secrets.API_KEY }}
18
16
  npm-token: ${{ secrets.CORVA_NPM_TOKEN }}