genlayer 0.0.13 → 0.0.17

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.
package/.release-it.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "git": {
3
- "commitMessage": "Release v${version}",
3
+ "commitMessage": "Release v${version} [skip ci]",
4
4
  "tagName": "v${version}",
5
5
  "requireCleanWorkingDir": false,
6
6
  "requireUpstream": false,
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
 
2
2
 
3
+ ## 0.0.17 (2024-04-23)
4
+
5
+ ## 0.0.16 (2024-04-23)
6
+
7
+ ## [0.0.15](https://github.com/yeagerai/genlayer-cli/compare/v0.0.14...v0.0.15) (2024-04-23)
8
+
9
+ ## [0.0.14](https://github.com/yeagerai/genlayer-cli/compare/v0.0.13...v0.0.14) (2024-04-23)
10
+
3
11
  ## [0.0.13](https://github.com/yeagerai/genlayer-cli/compare/v0.0.12...v0.0.13) (2024-04-23)
4
12
 
5
13
  ## [0.0.12](https://github.com/yeagerai/genlayer-cli/compare/v0.0.11...v0.0.12) (2024-04-23)
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "genlayer",
3
- "version": "0.0.13",
3
+ "version": "0.0.17",
4
4
  "description": "GenLayer Command Line Tool",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
7
7
  "test": "jest",
8
- "dev": "node esbuild.config.js",
8
+ "dev": "cross-env NODE_ENV=development node esbuild.config.js",
9
9
  "build": "cross-env NODE_ENV=production node esbuild.config.js",
10
10
  "release": "release-it --ci"
11
11
  },