-
-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(utils): fix browser build for concerto-util (#970)
* chore(actions): publish v3.20.1 to npm Signed-off-by: GitHub <[email protected]> * fix(utils): fix browser build for concerto-util Signed-off-by: sanketshevkar <[email protected]> * fix(utils): fix browser build for concerto-util Signed-off-by: sanketshevkar <[email protected]> * fix(utils): fix browser build for concerto-util Signed-off-by: sanketshevkar <[email protected]> --------- Signed-off-by: GitHub <[email protected]> Signed-off-by: sanketshevkar <[email protected]> Co-authored-by: mttrbrts <[email protected]>
- Loading branch information
1 parent
05a97e5
commit 85366be
Showing
9 changed files
with
1,275 additions
and
1,565 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,48 @@ | ||
{ | ||
"name": "@accordproject/concerto-analysis", | ||
"version": "3.19.9", | ||
"description": "Analysis of Concerto model files", | ||
"homepage": "https://github.com/accordproject/concerto", | ||
"engines": { | ||
"node": ">=18", | ||
"npm": ">=10" | ||
}, | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"scripts": { | ||
"clean": "rimraf dist", | ||
"prebuild": "npm-run-all clean", | ||
"build": "tsc -p tsconfig.build.json", | ||
"pretest": "npm-run-all lint", | ||
"lint": "eslint .", | ||
"test": "jest", | ||
"test:watch": "jest --watchAll" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/accordproject/concerto.git", | ||
"directory": "packages/concerto-analysis" | ||
}, | ||
"keywords": [ | ||
"concerto", | ||
"tools", | ||
"modeling" | ||
], | ||
"author": "accordproject.org", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@accordproject/concerto-core": "3.19.6", | ||
"semver": "7.6.3" | ||
}, | ||
"devDependencies": { | ||
"@accordproject/concerto-cto": "3.19.6", | ||
"@types/semver": "7.5.8", | ||
"@typescript-eslint/eslint-plugin": "8.16.0", | ||
"@typescript-eslint/parser": "8.16.0", | ||
"eslint": "8.57.1", | ||
"jest": "^29.7.0", | ||
"npm-run-all": "4.1.5", | ||
"ts-jest": "^29.2.5", | ||
"typescript": "^5.7.2" | ||
} | ||
"name": "@accordproject/concerto-analysis", | ||
"version": "3.20.1", | ||
"description": "Analysis of Concerto model files", | ||
"homepage": "https://github.com/accordproject/concerto", | ||
"engines": { | ||
"node": ">=18", | ||
"npm": ">=10" | ||
}, | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"scripts": { | ||
"clean": "rimraf dist", | ||
"prebuild": "npm-run-all clean", | ||
"build": "tsc -p tsconfig.build.json", | ||
"pretest": "npm-run-all lint", | ||
"lint": "eslint .", | ||
"test": "jest", | ||
"test:watch": "jest --watchAll" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/accordproject/concerto.git", | ||
"directory": "packages/concerto-analysis" | ||
}, | ||
"keywords": [ | ||
"concerto", | ||
"tools", | ||
"modeling" | ||
], | ||
"author": "accordproject.org", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@accordproject/concerto-core": "3.20.1", | ||
"semver": "7.6.3" | ||
}, | ||
"devDependencies": { | ||
"@accordproject/concerto-cto": "3.20.1", | ||
"@types/semver": "7.5.8", | ||
"@typescript-eslint/eslint-plugin": "8.16.0", | ||
"@typescript-eslint/parser": "8.16.0", | ||
"eslint": "8.57.1", | ||
"jest": "^29.7.0", | ||
"npm-run-all": "4.1.5", | ||
"ts-jest": "^29.2.5", | ||
"typescript": "^5.7.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
{ | ||
"name": "@accordproject/concerto-types", | ||
"version": "3.19.9", | ||
"description": "Types for the Concerto Modeling Language", | ||
"homepage": "https://github.com/accordproject/concerto", | ||
"engines": { | ||
"node": ">=18", | ||
"npm": ">=10" | ||
}, | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"scripts": { | ||
"clean": "rimraf src/generated dist", | ||
"codegen": "node scripts/codegen.js", | ||
"prebuild": "npm-run-all clean codegen", | ||
"build": "tsc", | ||
"pretest": "npm-run-all prebuild lint", | ||
"lint": "eslint .", | ||
"test": "jest --passWithNoTests", | ||
"test:watch": "jest --watchAll" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/accordproject/concerto.git", | ||
"directory": "packages/concerto-types" | ||
}, | ||
"keywords": [ | ||
"concerto", | ||
"tools", | ||
"modeling" | ||
"name": "@accordproject/concerto-types", | ||
"version": "3.20.1", | ||
"description": "Types for the Concerto Modeling Language", | ||
"homepage": "https://github.com/accordproject/concerto", | ||
"engines": { | ||
"node": ">=18", | ||
"npm": ">=10" | ||
}, | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"scripts": { | ||
"clean": "rimraf src/generated dist", | ||
"codegen": "node scripts/codegen.js", | ||
"prebuild": "npm-run-all clean codegen", | ||
"build": "tsc", | ||
"pretest": "npm-run-all prebuild lint", | ||
"lint": "eslint .", | ||
"test": "jest --passWithNoTests", | ||
"test:watch": "jest --watchAll" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/accordproject/concerto.git", | ||
"directory": "packages/concerto-types" | ||
}, | ||
"keywords": [ | ||
"concerto", | ||
"tools", | ||
"modeling" | ||
], | ||
"author": "accordproject.org", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@accordproject/concerto-codegen": "3.30.1", | ||
"@accordproject/concerto-core": "3.20.1", | ||
"@accordproject/concerto-util": "3.20.1", | ||
"eslint": "8.57.1", | ||
"jest": "29.7.0", | ||
"npm-run-all": "4.1.5", | ||
"rimraf": "6.0.1", | ||
"ts-jest": "29.2.5" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest", | ||
"testEnvironment": "node", | ||
"testPathIgnorePatterns": [ | ||
"<rootDir>/dist/", | ||
"/node_modules/" | ||
], | ||
"author": "accordproject.org", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"@accordproject/concerto-codegen": "3.30.1", | ||
"@accordproject/concerto-core": "3.19.6", | ||
"@accordproject/concerto-util": "3.19.6", | ||
"eslint": "8.57.1", | ||
"jest": "29.7.0", | ||
"npm-run-all": "4.1.5", | ||
"rimraf": "6.0.1", | ||
"ts-jest": "29.2.5" | ||
}, | ||
"jest": { | ||
"preset": "ts-jest", | ||
"testEnvironment": "node", | ||
"testPathIgnorePatterns": [ | ||
"<rootDir>/dist/", | ||
"/node_modules/" | ||
], | ||
"collectCoverage": true, | ||
"collectCoverageFrom": [ | ||
"src/**/*.ts" | ||
] | ||
} | ||
"collectCoverage": true, | ||
"collectCoverageFrom": [ | ||
"src/**/*.ts" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters