Skip to content

Commit

Permalink
wip: release(rc.8): upgrading ubik to v3 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
egasimus committed Nov 26, 2023
1 parent 1ff0486 commit 0ce4866
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 43 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ examples/wasm
*.tsbuildinfo
*/*.tsbuildinfo
**/*.tsbuildinfo
*.js.map
*.d.ts.map
3 changes: 3 additions & 0 deletions agent/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*.js
*.d.ts
*.tsbuildinfo
25 changes: 15 additions & 10 deletions agent/package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
{
"name": "@fadroma/agent",
"name": "@fadroma/agent",
"version": "2.0.0-rc.8",
"type": "module",
"main": "agent.ts",
"files": [ "*.ts", "!*.test.*" ],
"type": "module",
"main": "agent.ts",
"files": [
"*.ts",
"!*.test.*"
],
"description": "Isomorphic base layer for implementing dAPI clients. See @fadroma/scrt for Secret Network support.",
"scripts": {
"check": "tsc --noEmit",
"test": "time ensuite agent.test.ts",
"cov": "time ensuite-cov -r text -r lcov -- agent.test.ts",
"ubik": "npm run check && npm run cov all && ubik",
"release": "ubik release --access public --otp 123123"
"test": "time ensuite agent.test.ts",
"cov": "time ensuite-cov -r text -r lcov -- agent.test.ts",
"release": "npm run check && npm run cov all && npm run release:faster",
"release:fast": "npm run check && npm run release:faster",
"release:faster": "ubik release --access public --otp 123123"
},
"dependencies": {
"@hackbg/4mat": "workspace:^1.0.1",
Expand All @@ -19,5 +23,6 @@
"@hackbg/into": "^1.0.1",
"@hackbg/logs": "workspace:^2.1",
"@hackbg/oops": "workspace:^1.1"
}
}
},
"ubik": true
}
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
"prepare": "husky install",
"repl": "./fadroma.cli.cjs repl",
"test": "time ensuite fadroma.test.ts",
"ubik": "ubik",
"release": "pnpm i && pnpm clean && pnpm check && pnpm cov all && ubik release --otp 123123",
"release:fast": "pnpm i && pnpm check && ubik release --otp 123123",
"release:faster": "pnpm i && ubik release --otp 123123"
Expand Down Expand Up @@ -106,7 +105,7 @@

"@hackbg/ensuite": "workspace:^",
"@hackbg/ganesha": "workspace:^",
"@hackbg/ubik": "workspace:^2.0.8",
"@hackbg/ubik": "workspace:^3.0.0-rc.1",

"@types/dockerode": "^3.3.23",
"@types/js-yaml": "^4.0.9",
Expand Down
52 changes: 23 additions & 29 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion toolbox
Submodule toolbox updated 3 files
+1 −1 package.json
+12 −12 pnpm-lock.yaml
+1 −1 ubik
3 changes: 2 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"lib": ["ES2020", "DOM"],
"strict": true,
"useUnknownInCatchVariables": false,
"plugins": [ { "transform": "@magic-works/commonjs-import.meta" } ]
"plugins": [ { "transform": "@magic-works/commonjs-import.meta" } ],
"noEmitOnError": true
},
"exclude": [ "*.dist.*", "**/*.dist.*", "*.spec.*", "**/*.spec.*" ]
}

0 comments on commit 0ce4866

Please sign in to comment.