Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] unable to publish when using publishConfig option - ERR_INVALID_ARG_TYPE #2834

Closed
waitem opened this issue Mar 6, 2021 · 14 comments
Closed
Assignees
Labels
Bug thing that needs fixing Release 7.x work is associated with a specific npm 7 release

Comments

@waitem
Copy link

waitem commented Mar 6, 2021

Current Behavior:

When running npm publish the following error appears:

npm ERR! code ERR_INVALID_ARG_TYPE
npm ERR! The "path" argument must be of type string. Received undefined

npm ERR! A complete log of this run can be found in:
npm ERR!     /home/xx/.npm/_logs/2021-03-06T09_10_43_193Z-debug.log

The debug trace shows:

23 verbose stack TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. Received undefined
23 verbose stack     at validateString (internal/validators.js:124:11)
23 verbose stack     at join (path.js:1039:7)
23 verbose stack     at flatten (/home/xx/.nvm/versions/node/v14.16.0/lib/node_modules/npm/lib/utils/flat-options.js:50:10)
23 verbose stack     at Publish.publishConfigToOpts (/home/xx/.nvm/versions/node/v14.16.0/lib/node_modules/npm/lib/publish.js:140:12)
23 verbose stack     at Publish.publish (/home/xx/.nvm/versions/node/v14.16.0/lib/node_modules/npm/lib/publish.js:58:32)

Expected Behavior:

npm publish to continue working as it did in version 6

Steps To Reproduce:

  1. In this environment...
    Ubuntu 20.04
    Node 14.16.0
    npm 7.6.1
  2. With this config...
    The package is configured to be published to github as per: github instrutions

package.json includes:

  "publishConfig": {
    "registry": "https://npm.pkg.github.com"
  },
  1. Run npm publish
  2. See error:
npm ERR! code ERR_INVALID_ARG_TYPE
npm ERR! The "path" argument must be of type string. Received undefined`

Environment:

Ubuntu 20.04
Node 14.16.0
npm 7.6.1

Possible cause

The issue seems to be related to changes made to the flatten() method in utils/flat-options.js
This is being called with the publishConfig which only contains a registry property.
However flatten (line 50), tries to use join() to create a path from the non-existent'cache property, hence the error (I believe).
Looking at the changes, it seems that v6 used to read the npm config for the cache value.

Workaround

My temporary workaround for this is to add a cache property to the publishConfig section, using the default cache value:

  "publishConfig": {
    "cache": "~/.npm",
    "registry": "https://npm.pkg.github.com"
  },

As others have noted, this workaround has the side-effect of creating a ~/.npm directory in the root of the project. My solution to this was then simply to add ~/.npm to .gitgnore

I guess that you could name this cache directory whatever you like. I used the default value simply to make publish work again. Note that my suggestion is purely a workaround and doesn't resolve the actual issue. Although I could see in the v7 code where the change has been made that is causing this issue, unfortunately I was unable to understand why that change was made.

@waitem waitem added Bug thing that needs fixing Needs Triage needs review for next steps Release 7.x work is associated with a specific npm 7 release labels Mar 6, 2021
@FingalP
Copy link

FingalP commented Mar 8, 2021

We had the same issue. The workaround works for now, thanks @waitem

@Fadoli
Copy link

Fadoli commented Mar 9, 2021

Having the same issue here,

an other workaround (if you don't want to modify all your publish config) is to modify line 51 of flat-options.js to

cache: join(obj.cache || '~/.npm', '_cacache'),

massimocandela added a commit to massimocandela/longest-prefix-match that referenced this issue Mar 11, 2021
@johnthad
Copy link

We had the same issue. The workaround works for now, thanks @waitem

This workaround does create a local directory ~ with the cache info (macOS 10.15.7).

@yellowtailfan
Copy link

I just encountered this bug, and the "cache": "~/.npm", work around caused a side-effect where the cache was written in the project folder (<project>/~/.npm) instead of my home directory. So I've reverted back to NPM 6.x instead. I'm using NPM in WSL2.

@stheine
Copy link

stheine commented Mar 15, 2021

experienced the same in npm 7.6.3 and node v14.16.0. found a workaround by completely removing the publishConfig section from the package.json.

kenrick95 added a commit to kenrick95/npm-cli that referenced this issue Mar 15, 2021
When not handled, when there are multiple entries in
this.npm.config.list, it causes crash as described in npm#2834

The change here merge everything in this.npm.config.list,
because as I observed, the default config is present only
 at the last entry.

Fixes npm#2834
@lorenzogrv
Copy link

lorenzogrv commented Mar 15, 2021

Hi everybody. I can confirm this issue too. Proposed workaround (adding publishConfig.cache) helped to step over, same side-effect as @yellowtailfan explains.

In this particular case I can't remove publishConfig from package.json as it's need to publish against gitlab's package registry, as suggested by @stheine .

Did not downgrade to 6.x to test.

I'm glad to see the pull request over this comment. Keep up the good work.

$ uname -srv
Linux 5.4.0-66-generic #74~18.04.2-Ubuntu SMP Fri Feb 5 11:17:31 UTC 2021
$ npm --version
7.6.3
$ node --version
v12.21.0

I suggest future readers "cache": "cache.npm" or the like so you don't accidentally try to rm -r ~ within your project, which may have fatal effects within your user's home

@lorenzogrv
Copy link

Hi again. Just noticed the workaround has another side-effect: It will publish with --tag set to undefined

Well, it may not be the workaround at all, but side-effect is there

Check npm show @scope/package-name to see if side-effect affects you. npm publish --tag latest works as expected, after the needed version bump.

@wraithgar wraithgar removed the Needs Triage needs review for next steps label Mar 15, 2021
@wraithgar wraithgar self-assigned this Mar 15, 2021
@wraithgar
Copy link
Member

A huge thank you to @kenrick95 for figuring this out and submitting a PR that will resolve it: #2865

Will keep this open after we ship that PR (which will hopefully be this week) so those affected can confirm that it fixes their issue.

isaacs pushed a commit that referenced this issue Mar 18, 2021
When not handled, when there are multiple entries in
this.npm.config.list, it causes crash as described in #2834

The change here merge everything in this.npm.config.list, because as I
observed, the default config is present only at the last entry.

Fix: #2834
Co-authored-by: @wraithgar

PR-URL: #2865
Credit: @kenrick95
Close: #2865
Reviewed-by: @isaacs, @wraithgar
isaacs pushed a commit that referenced this issue Mar 18, 2021
When not handled, when there are multiple entries in
this.npm.config.list, it causes crash as described in #2834

The change here merge everything in this.npm.config.list, because as I
observed, the default config is present only at the last entry.

Fix: #2834
Co-authored-by: @wraithgar

PR-URL: #2865
Credit: @kenrick95
Close: #2865
Reviewed-by: @isaacs, @wraithgar
TheMcMurder added a commit to esm-bundle/autopublish-template that referenced this issue Mar 19, 2021
…is in configuration so I am working around it as well
eswarasai added a commit to xtokenmarket/js that referenced this issue Mar 20, 2021
mesaugat added a commit to leapfrogtechnology/sync-db that referenced this issue Mar 21, 2021
npm issue when publishing packages --> npm/cli#2834
Yuvalke added a commit to kaltura/playkit-js-ui that referenced this issue Mar 22, 2021
@bhargavgohil25
Copy link

The Workaround worked for me too 👍

btakita added a commit to ctx-core/pocketgrid that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/time that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/touch that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
btakita added a commit to ctx-core/tradingview that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/checkbox-tree that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
btakita added a commit to ctx-core/uikit that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/up__apex that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/uri that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
btakita added a commit to ctx-core/uuid that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/app_version that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
btakita added a commit to ctx-core/version__obj that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/webgl that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/window that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
btakita added a commit to ctx-core/word-segmentation that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
btakita added a commit to ctx-core/ctx-core-dev-tools that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/ctx-core-git-tools that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
btakita added a commit to ctx-core/ctx-core-package-tools that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
btakita added a commit to ctx-core/ctx-core-typescript-tools that referenced this issue Mar 29, 2021
### Patch Changes

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- @ctx-core/[email protected]
- @ctx-core/[email protected]
katharina-unger added a commit to DedalusDIIT/cornerstone that referenced this issue Mar 29, 2021
olliefreeman added a commit to MauroDataMapper/mdm-resources that referenced this issue Mar 29, 2021
This is needed to counter the current issue with publishConfig
npm/cli#2834
@Gauhar
Copy link

Gauhar commented Mar 31, 2021

I can confirm that this issue was happening on my end as well on npm version 7.6.3 and node version v15.12.0. Since we I am publishing a public package then you can get rid of publishConfig

@yairEO
Copy link

yairEO commented Apr 10, 2021

I also confirm this issue occurs as of right now, using npm version 7.9.0, node version v12.21.0

I've removed the publishConfig property from the package.json file and now I am able to publish.

yairEO pushed a commit to yairEO/fakescroll that referenced this issue Apr 10, 2021
kamilbrk pushed a commit to Collabco/myday-deploy-app that referenced this issue Aug 24, 2021
btakita added a commit to ctx-core/s3 that referenced this issue Nov 19, 2023
## 13.2.20

### Patch Changes

- @ctx-core/env: ^17.4.18 -> ^17.4.19
- tsx: ^4.1.3 -> ^4.1.4
- Updated dependencies
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.19

### Patch Changes
- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.18

- @ctx-core/env: ^17.4.15 -> ^17.4.16
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.16

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.15

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.14

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.12

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.11

- @ctx-core/object: ^30.4.2 -> ^30.4.3
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.10

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.9

- tsx: ^4.1.2 -> ^4.1.3
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.8

- @ctx-core/object: ^30.3.1 -> ^30.4.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.7

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.6

- @ctx-core/object: ^30.2.0 -> ^30.3.0
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.5

- @ctx-core/object: ^30.1.3 -> ^30.2.0
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.4

- package.json: files: + \*.js
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.2

- fix: missing tsconfig.json
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.1

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.2.0

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.235

### Patch Changes

- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.234

- @ctx-core/object: ^29.0.0 -> ^29.1.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.233

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.230

- @aws-sdk/client-s3: ^3.440.0 -> ^3.441.0
- @ctx-core/object: ^28.2.1 -> ^28.2.2
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.229

- @aws-sdk/client-s3: ^3.429.0 -> ^3.431.0
- tsx: ^3.13.0 -> ^3.14.0
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.219

- @ctx-core/object: ^28.1.0 -> ^28.2.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.215

- @ctx-core/object: ^28.0.7 -> ^28.1.0
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.213

- version bump
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.200

- @ctx-core/object: ^28.0.4 -> ^28.0.5
- @ctx-core/env: ^17.2.128 -> ^17.3.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.195

- @aws-sdk/client-s3: ^3.360.0 -> ^3.362.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.166

- @ctx-core/object: ^28.0.2 -> ^28.0.3
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.161

- @ctx-core/object: ^28.0.1 -> ^28.0.2
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.158

- @aws-sdk/client-s3: ^3.353.0 -> ^3.354.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.157

- @ctx-core/env: ^17.2.109 -> ^17.2.110
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.155

- @ctx-core/object: ^28.0.0 -> ^28.0.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.148

### Patch Changes

- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.145

- @ctx-core/object: ^27.8.1 -> ^27.9.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.144

- @ctx-core/object: ^27.8.0 -> ^27.8.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.143

- @ctx-core/object: ^27.6.0 -> ^27.8.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.142

- @ctx-core/object: ^27.5.0 -> ^27.6.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.141

- @ctx-core/object: ^27.4.26 -> ^27.5.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.137

- @ctx-core/env: ^17.2.91 -> ^17.2.92
- @ctx-core/object: ^27.4.25 -> ^27.4.26
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.127

- @ctx-core/object: ^27.4.24 -> ^27.4.25
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.115

- @ctx-core/monorepo: ^20.3.3 -> ^20.3.4
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.106

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.105

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.104

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.103

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.102

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.101

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.86

- @ctx-core/object: ^27.4.0 -> ^27.4.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.72

- @ctx-core/object: ^27.3.4 -> ^27.4.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.71

- @aws-sdk/client-s3: ^3.301.0 -> ^3.303.0
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.65

- @ctx-core/env: ^17.2.43 -> ^17.2.44
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.62

- @ctx-core/object: ^27.3.0 -> ^27.3.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.56

- @ctx-core/object: ^27.2.0 -> ^27.3.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.55

- @ctx-core/object: ^27.1.7 -> ^27.2.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.53

- @ctx-core/object: ^27.1.3 -> ^27.1.4
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.34

- @ctx-core/object: ^27.1.2 -> ^27.1.3
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.33

- @ctx-core/object: ^27.0.0 -> ^27.1.0
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.28

### Patch Changes

- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.26

- @ctx-core/env: ^17.2.18 -> ^17.2.19
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.23

- import*meta_env*() instead of process.env
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.22

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.21

- @ctx-core/object: ^25.2.0 -> ^25.2.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.20

- @ctx-core/object: ^25.1.0 -> ^25.2.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.19

- @ctx-core/object: ^25.0.1 -> ^25.1.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.17

- @ctx-core/object: ^25.0.0 -> ^25.0.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.15

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.1.13

### Patch Changes

- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.149

- @ctx-core/object: ^24.1.3 -> ^24.1.4
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.140

- @ctx-core/object: ^24.1.2 -> ^24.1.3
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.139

- @ctx-core/object: ^24.1.1 -> ^24.1.2
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.134

- tsconfig.json: - importsNotUsedAsValues
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.133

- @ctx-core/object: ^24.0.0 -> ^24.0.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.126

- Updated dependencies
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.124

- @ctx-core/object: ^23.0.1 -> ^23.1.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.120

- @ctx-core/object: ^23.0.0 -> ^23.0.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.119

### Patch Changes

- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.118

- @ctx-core/object: ^22.9.1 -> ^22.10.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.117

- @ctx-core/object: ^22.9.0 -> ^22.9.1
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.116

- @ctx-core/object: ^22.8.2 -> ^22.9.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.115

- @ctx-core/object: ^22.8.0 -> ^22.8.2
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.114

- @ctx-core/object: ^22.6.0 -> ^22.7.0
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.113

- @ctx-core/object: ^22.5.0 -> ^22.6.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.112

- @ctx-core/object: ^22.4.1 -> ^22.5.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.111

- @aws-sdk/client-s3: ^3.224.0 -> ^3.226.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.100

- tsx: ^3.8.2 -> ^3.9.0
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.64

- @ctx-core/object: 22.2.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.34

- update dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.21

- @ctx-core/function: 20.7.1
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.20

- @ctx-core/array: 26.2.0
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.19

- fix: @ctx-core/\* dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.15

- package.json: exports: update
- Updated dependencies
- - @ctx-core/[email protected]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.14

- @aws-sdk/client-s3: ^3.58.0 -> ^3.67.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.12

- update dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.9

- update dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.3

- update dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 13.0.1

### Patch Changes

- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 12.1.1

### Minor Changes

--
- - getObject_b,getObject_maybe_b,listObjects_b,putObject_b,s3_client_b
- - getObject_b,getObject_maybe_b,listObjects_b,putObject_b,s3_client_b

## 12.0.1

- update dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.61

- update dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.60

- sideEffects = false
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.57

- @swc/core: ^1.2.125 -> ^1.2.127
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.56

- version bump
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.55

- .js + .d.ts instead of .ts
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.54

### Patch Changes

- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.53

- fix: error TS6059: \* is not under 'rootDir': package.json: types: ./dist/index.d.ts
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.52

- tsconfig.json: "target": "ES2021"
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.51

- package.json: "types": "./src/index.ts": better editing experience
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.50

- fix: build
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.49

- \*.d.ts export
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.48

- fix: tsconfig.json: "rootDir": "."
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.47

- fix: package.json: exports
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.46

- package.json: svelte: ./dist/index.js
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.45

- package.json: - module
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.44

- package.json: - "main": explicitly not support cjs
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.43

- @swc/core: ^1.2.117 -> ^1.2.118
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.42

- @swc/core: ^1.2.116 -> ^1.2.117
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.41

- @swc/core: ^1.2.113 -> ^1.2.116
- @aws-sdk/client-s3: ^3.42.0 -> ^3.44.0
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.40

- @swc/core: ^1.2.111 -> ^1.2.113
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.39

- @swc/core: ^1.2.110 -> ^1.2.111
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.38

- @swc/core: ^1.2.108 -> ^1.2.110
- Updated dependencies
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.37

- @aws-sdk/client-s3: ^3.40.1 -> ^3.41.0
- @swc/core: ^1.2.107 -> ^1.2.108
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.35

- compile using swc
- Updated dependencies
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.34

- @aws-sdk/client-s3: ^3.36.0 -> ^3.39.0
- Updated dependencies [undefined]
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.32

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.26

- typescript: ^4.4.2 -> ^4.4.3
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.25

- typescript: ^4.3.5 -> ^4.4.2
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.21

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.19

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.15

- @aws-sdk/client-s3: ^3.22.0 -> ^3.23.0
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.14

- fix: "exports": "./package.json": "./package.json"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.12

- exports: + "package.json": "./package.json"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.11

- fix: sourceMappingURL: "mapRoot": ""
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.9

- tsconfig.json: "target": "es2019"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.8

- fix: cjs: load as a Promise
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.7

- "main": "./dist/index.cjs"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.6

- fix: index.cjs: module.exports = require('./index.js')
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.5

- back to esm module with cjs using esm npm package to load library
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.4

- support cjs & esm: + "exports"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.3

- fix: "type": "module"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.1

- fix: "type": "module"
- Updated dependencies [2a6971f80]
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 11.0.0

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.17

- typescript: ^4.3.4 -> ^4.3.5
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.14

- dist directory
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.12

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.11

- tsconfig.json: "lib": ["dom", "ESNext"]
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.9

- "prepublishOnly": "npm run clean && npm run compile"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.8

- fix: deploying \*.js files
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.7

- "prepare": "npm run clean && npm run compile"
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.6

- npm run prepare instead of npm run prepublishOnly
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.5

- fix: npm run clean
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.4

- typescript: ^4.3.3 -> ^4.3.4
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.3

- version bump
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.1

- typescript: ^4.3.2 -> ^4.3.3
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 10.0.0

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 9.0.5

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 9.0.4

- version bump: run build
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 9.0.2

- fix: build: clean up old build files in dist
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 9.0.1

- Updated dependencies [undefined]
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.3.2

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.3.1

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.2.1

- .gitignore: - \*.js
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.2.0

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.1.4

- types: ./src/index.d.ts: address error TS2742 issue
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.1.3

- .npmignore: + ~
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.1.1

- fix: target: 2018: nodejs compatability
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.1.0

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.51

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.50

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.48

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.47

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.46

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.45

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.44

- @ctx-core/object: 17.5.6
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.41

- update dependencies
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.40

- typescript: ^4.2.3 -> ^4.2.4
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.39

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.38

- version bump
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.37

- fix: npm publish: npm/cli#2834
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.36

- fix: npm run compile: tsc -b .
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.35

- typescript: ^4.2.2 -> ^4.2.3
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.29

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.23

- @aws-sdk/client-s3: ^3.6.1 -> ^3.7.0
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.22

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.21

- version bump
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.20

- typescript: ^4.1.5 -> ^4.2.2
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.18

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.13

- typescript: ^4.1.4 -> ^4.1.5
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.12

- typescript: ^4.1.3 -> ^4.1.4
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.11

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 8.0.10

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.1.17

- @aws-sdk/client-s3: ^3.4.0 -> ^3.4.1
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.1.13

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.1.12

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.1.0

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.57

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.56

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.55

### Patch Changes

--
- - .rush
- - .rush
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.46

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.39

- typescript: ^4.1.2 -> ^4.1.3
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.37

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.35

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.34

- Updated dependencies [undefined]
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.33

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.30

- typescript: ^4.0.5 -> ^4.1.2
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.28

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.26

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.25

- typescript: ^4.0.3 -> ^4.0.5
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.24

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.23

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.21

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.18

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.17

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.14

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.12

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.3

- fix: install issues: using explicit workspace: versioning
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 7.0.0

### Patch Changes

- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 6.0.4

- fix: npm run compile: path to tsc
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]

## 6.0.3

- typescript updates
- Updated dependencies [undefined]
- Updated dependencies [undefined]
- - @ctx-core/[email protected]
- @ctx-core/[email protected]
borhandarabi pushed a commit to TasvirChi/playchi-js-ui that referenced this issue May 15, 2024
borhandarabi pushed a commit to TasvirChi/playchi-js-ui that referenced this issue May 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug thing that needs fixing Release 7.x work is associated with a specific npm 7 release
Projects
None yet