@cobuilders/hardhat-arb-test 0.0.1-alpha.1 → 0.0.1-alpha.11

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +60 -0
  2. package/package.json +18 -9
  3. package/LICENSE +0 -21
package/CHANGELOG.md CHANGED
@@ -1,5 +1,65 @@
1
1
  # @cobuilders/hardhat-arb-test
2
2
 
3
+ ## 0.0.1-alpha.11
4
+
5
+ ### Patch Changes
6
+
7
+ - dd40dbf: Add release and pre-release to gh
8
+
9
+ ## 0.0.1-alpha.10
10
+
11
+ ### Patch Changes
12
+
13
+ - 61f2d49: Added auto-tag workflow
14
+
15
+ ## 0.0.1-alpha.9
16
+
17
+ ### Patch Changes
18
+
19
+ - b3fbeaa: Add tag to npm publish
20
+
21
+ ## 0.0.1-alpha.8
22
+
23
+ ### Patch Changes
24
+
25
+ - 20cd0e8: Fix release.yml: publish with npm
26
+
27
+ ## 0.0.1-alpha.7
28
+
29
+ ### Patch Changes
30
+
31
+ - 2d39409: Make public package
32
+
33
+ ## 0.0.1-alpha.6
34
+
35
+ ### Patch Changes
36
+
37
+ - 580c909: Fix package.json org case
38
+
39
+ ## 0.0.1-alpha.5
40
+
41
+ ### Patch Changes
42
+
43
+ - c88edca: OIDC Fix
44
+
45
+ ## 0.0.1-alpha.4
46
+
47
+ ### Patch Changes
48
+
49
+ - 7843b4f: Fix OIDC release
50
+
51
+ ## 0.0.1-alpha.3
52
+
53
+ ### Patch Changes
54
+
55
+ - 47932a3: Added provenance flag to force OIDC
56
+
57
+ ## 0.0.1-alpha.2
58
+
59
+ ### Patch Changes
60
+
61
+ - 1f828e6: Replaced npm token for trusted publisher
62
+
3
63
  ## 0.0.1-alpha.1
4
64
 
5
65
  ### Patch Changes
package/package.json CHANGED
@@ -1,12 +1,26 @@
1
1
  {
2
2
  "name": "@cobuilders/hardhat-arb-test",
3
- "version": "0.0.1-alpha.1",
3
+ "version": "0.0.1-alpha.11",
4
4
  "description": "",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/CoBuilders-xyz/hardhat-arbitrum-stylus",
8
+ "directory": "packages/hardhat-arb-test"
9
+ },
5
10
  "type": "module",
6
11
  "types": "./dist/src/index.d.ts",
7
12
  "exports": {
8
13
  ".": "./dist/src/index.js"
9
14
  },
15
+ "scripts": {
16
+ "build": "tsc --build .",
17
+ "clean": "rimraf dist",
18
+ "prepublishOnly": "pnpm build",
19
+ "lint": "eslint .",
20
+ "lint:fix": "eslint . --fix",
21
+ "format": "prettier --check .",
22
+ "format:fix": "prettier --write ."
23
+ },
10
24
  "files": [
11
25
  "dist/src/",
12
26
  "src/",
@@ -23,12 +37,7 @@
23
37
  "hardhat": "^3.0.0",
24
38
  "prettier": "^3.4.0"
25
39
  },
26
- "scripts": {
27
- "build": "tsc --build .",
28
- "clean": "rimraf dist",
29
- "lint": "eslint .",
30
- "lint:fix": "eslint . --fix",
31
- "format": "prettier --check .",
32
- "format:fix": "prettier --write ."
40
+ "publishConfig": {
41
+ "access": "public"
33
42
  }
34
- }
43
+ }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 CoBuilders
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.