Skip to content

Commit

Permalink
feat: Add release tag generation for js and haskell client (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushjain17 authored May 6, 2024
1 parent 5f40af5 commit c8aa534
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 36 deletions.
70 changes: 35 additions & 35 deletions clients/js/package.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,37 @@
{
"name": "Cac-Client",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "node ./tests/index.js",
"compile": "npx tsc",
"dev": "tsc --project tsconfig.json",
"buildLib": "webpack --mode=production",
"build": "run-s secure dev buildLib",
"start": "nodemon ./dist/app.js",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"json-logic-js": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^18.11.9",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^8.47.0",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
"name": "cac-client",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "node ./tests/index.js",
"compile": "npx tsc",
"dev": "tsc --project tsconfig.json",
"buildLib": "webpack --mode=production",
"build": "run-s secure dev buildLib",
"start": "nodemon ./dist/app.js",
"lint": "eslint . --ext .ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"json-logic-js": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@types/json-logic-js": "^2.0.1",
"@types/node": "^18.11.9",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^8.47.0",
"ts-loader": "^9.4.4",
"typescript": "^4.9.5",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}
4 changes: 3 additions & 1 deletion cog.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,6 @@ frontend = { path = "crates/frontend" }
caclang = { path = "crates/caclang" }
cac_client = { path = "crates/cac_client" }
experimentation_client = { path = "crates/experimentation_client" }
superposition_types = { path = "crates/superposition_types" }
superposition_types = { path = "crates/superposition_types" }
js_client = { path = "clients/js" }
haskell_client = { path = "clients/haskell" }

0 comments on commit c8aa534

Please sign in to comment.