Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Signed-off-by: zxypro1 <[email protected]>
  • Loading branch information
zxypro1 committed Jun 26, 2024
1 parent 785a029 commit 031b585
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion packages/engine/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serverless-devs/engine",
"version": "0.1.4-beta.1",
"version": "0.1.4-beta.2",
"description": "a engine lib for serverless-devs",
"main": "lib/index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/engine/src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ export const EXIT_CODE = {
RUN: 101,
};

export const INFO_EXP_PATTERN = /\$\{resources\.([^.]+)\.info\.[^}]+}/g;
export const OUTPUT_EXP_PATTERN = /\$\{resources\.([^.]+)\.output\.[^}]+}/g;
export const INFO_EXP_PATTERN = /\$\{resources\.([^.{}]+)\.info(\.[^.{}]+)+}/g;
export const OUTPUT_EXP_PATTERN = /\$\{resources\.([^.{}]+)\.output(\.[^.{}]+)+}/g;
4 changes: 2 additions & 2 deletions packages/load-application/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serverless-devs/load-application",
"version": "0.0.14-beta.1",
"version": "0.0.14-beta.2",
"description": "load application for serverless-devs",
"main": "lib/index.js",
"scripts": {
Expand All @@ -18,7 +18,7 @@
},
"dependencies": {
"@serverless-cd/debug": "^4.3.4",
"@serverless-devs/art-template": "^4.13.16-beta.7",
"@serverless-devs/art-template": "^4.13.16-beta.10",
"@serverless-devs/credential": "workspace:^",
"@serverless-devs/downloads": "workspace:^",
"@serverless-devs/utils": "workspace:^",
Expand Down
4 changes: 2 additions & 2 deletions packages/parse-spec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@serverless-devs/parse-spec",
"version": "0.0.28-beta.1",
"version": "0.0.28-beta.2",
"description": "a parse yaml spec lib for serverless-devs",
"main": "lib/index.js",
"scripts": {
Expand All @@ -22,7 +22,7 @@
},
"dependencies": {
"@serverless-cd/debug": "^4.3.4",
"@serverless-devs/art-template": "^4.13.16-beta.7",
"@serverless-devs/art-template": "^4.13.16-beta.10",
"@serverless-devs/credential": "workspace:^",
"@serverless-devs/utils": "workspace:^",
"chalk": "^4.1.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/parse-spec/src/contants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import path from 'path';

export const REGX = /\${([\w\W]*?)}/;
export const REGXG = /\${([\w\W]*?)}/g;
export const INFO_EXP_PATTERN = /\$\{resources\.([^.]+)\.info\.[^}]+}/g;
export const OUTPUT_EXP_PATTERN = /\$\{resources\.([^.]+)\.output\.[^}]+}/g;
export const INFO_EXP_PATTERN = /\$\{resources\.([^.{}]+)\.info(\.[^.{}]+)+}/g
export const OUTPUT_EXP_PATTERN = /\$\{resources\.([^.{}]+)\.output(\.[^.{}]+)+}/g;
export const ENVIRONMENT_KEY = 'env';
export const ENVIRONMENT_FILE_NAME = 'env.yaml';
export const ENVIRONMENT_FILE_PATH = path.join(utils.getRootHome(), 'cache', 'default-env.json');
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 031b585

Please sign in to comment.