@seeka-labs/cli-apps 1.1.25 → 1.1.29

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.
@@ -1,5 +1,5 @@
1
1
  stages:
2
- - deploy
2
+ - deploy
3
3
 
4
4
  variables:
5
5
  LAMBDA_FUNC_RESOURCE_NAME: seeka-app-example-name
@@ -7,31 +7,31 @@ variables:
7
7
 
8
8
  workflow:
9
9
  rules:
10
- - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
11
- when: never
12
- - if: '$CI_COMMIT_BRANCH == "main" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web")'
13
- when: always
14
- - if: '$CI_COMMIT_BRANCH == "staging" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web")'
15
- when: always
10
+ - if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
11
+ when: never
12
+ - if: '$CI_COMMIT_BRANCH == "main" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web")'
13
+ when: always
14
+ - if: '$CI_COMMIT_BRANCH == "staging" && ($CI_PIPELINE_SOURCE == "push" || $CI_PIPELINE_SOURCE == "web")'
15
+ when: always
16
16
 
17
17
  deploy:
18
18
  stage: deploy
19
- image: node:18-bullseye
19
+ image: node:20
20
20
  before_script:
21
- - echo "installing aws cli"
22
- - curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
23
- - unzip awscliv2.zip
24
- - ./aws/install --bin-dir /usr/local/bin --install-dir /usr/local/aws-cli --update
25
- - ls -l /usr/local/bin/aws
26
- - aws --version
27
- - echo "using environment variables AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and AWS_DEFAULT_REGION for accessing the AWS CLI"
28
- - echo "installing zip"
29
- - apt-get update
30
- - apt-get install zip
21
+ - echo "installing aws cli"
22
+ - curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
23
+ - unzip awscliv2.zip
24
+ - ./aws/install --bin-dir /usr/local/bin --install-dir /usr/local/aws-cli --update
25
+ - ls -l /usr/local/bin/aws
26
+ - aws --version
27
+ - echo "using environment variables AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and AWS_DEFAULT_REGION for accessing the AWS CLI"
28
+ - echo "installing zip"
29
+ - apt-get update
30
+ - apt-get install zip
31
31
  script:
32
- - echo "deploying AWS lambda func $LAMBDA_FUNC_RESOURCE_NAME from branch $CI_COMMIT_BRANCH"
33
- - yarn install --production=false
34
- - yarn deploy
32
+ - echo "deploying AWS lambda func $LAMBDA_FUNC_RESOURCE_NAME from branch $CI_COMMIT_BRANCH"
33
+ - yarn install --production=false
34
+ - yarn deploy
35
35
  only:
36
- - main
37
- - staging
36
+ - main
37
+ - staging
@@ -24,29 +24,30 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@datalust/winston-seq": "^2.0.0",
27
- "@seeka-labs/sdk-apps-server": "^1.1.24",
28
- "express": "^4.21.1",
27
+ "@seeka-labs/sdk-apps-server": "^1.1.26",
28
+ "express": "^4.21.2",
29
29
  "lodash-es": "^4.17.21",
30
30
  "redis": "^4.7.0",
31
- "serverless-http": "^3.2.0"
31
+ "serverless-http": "^3.2.0",
32
+ "winston": "^3.17.0"
32
33
  },
33
34
  "devDependencies": {
34
35
  "@jest/globals": "^29.7.0",
35
- "@types/aws-lambda": "^8.10.146",
36
+ "@types/aws-lambda": "^8.10.147",
36
37
  "@types/express": "^5.0.0",
37
38
  "@types/lodash-es": "^4.17.12",
38
39
  "@types/node": "^20",
39
- "@typescript-eslint/eslint-plugin": "^8.17.0",
40
- "@typescript-eslint/parser": "^8.17.0",
40
+ "@typescript-eslint/eslint-plugin": "^8.22.0",
41
+ "@typescript-eslint/parser": "^8.22.0",
41
42
  "dotenv": "^16.4.7",
42
- "esbuild": "^0.24.0",
43
+ "esbuild": "^0.24.2",
43
44
  "eslint": "^9",
44
45
  "jest": "^29.7.0",
45
- "ts-jest": "^29.2.5",
46
46
  "ngrok": "^5.0.0-beta.2",
47
- "nodemon": "^3.1.7",
48
- "rimraf": "^5.0.0",
47
+ "nodemon": "^3.1.9",
48
+ "rimraf": "^6.0.1",
49
+ "ts-jest": "^29.2.5",
49
50
  "ts-node": "^10.9.2",
50
- "typescript": "^5.7.2"
51
+ "typescript": "^5.7.3"
51
52
  }
52
- }
53
+ }