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

Bad publish re-bump #74

Merged
merged 10 commits into from
Mar 31, 2021
Merged

Bad publish re-bump #74

merged 10 commits into from
Mar 31, 2021

Conversation

rvagg
Copy link
Member

@rvagg rvagg commented Mar 31, 2021

No description provided.

vmx and others added 10 commits March 31, 2021 17:33
It also removes the `Codec` class and exports a plain object
instead. This has consequences for imports.

BREAKING CHANGE:

Only use names exports as default exports don't play well with
CommonJS + Typescript typing.

This means that when you use ESM imports, e.g. the raw codec is
no longer imported as

```js
import raw from 'multiformats/codecs/raw'
```

but as

```js
import * as raw from 'multiformats/codecs/raw'
```

The CJS import for codecs don't change, it's still `const raw = require('multiformats/codecs/raw`.

Though other imports change, so

```js
import CID from 'multiformats/cid'
const CID = require('multiformats/cid')
```

is now

```js
import { CID } from 'multiformats/cid'
const { CID } = require ('multiformats/cid')
```
- "*" match seems to cause multiple path substitutions
microsoft/TypeScript#41284 that packge name prefix seems to resolve
- add types field which acts as main in TS
- modify scripts to use newer tsc --bulid command
- generate types on prepare so linking to git dependency works
- workaround douple substitution by mapping types/* to itself
   (see microsoft/TypeScript#41284)
The following commit message is mostly copied from cea9063:

feat!: named exports instead of default exports

It also removes the `Codec` class and exports a plain object
instead. This has consequences for imports.

BREAKING CHANGE:

Only use names exports as default exports don't play well with
CommonJS + Typescript typing.

This means that when you use ESM imports, e.g. the raw codec is
no longer imported as

```js
import raw from 'multiformats/codecs/raw'
```

but as

```js
import * as raw from 'multiformats/codecs/raw'
```

The CJS import for codecs don't change, it's still `const raw = require('multiformats/codecs/raw`.

Though other imports change, so

```js
import CID from 'multiformats/cid'
const CID = require('multiformats/cid')
```

is now

```js
import { CID } from 'multiformats/cid'
const { CID } = require ('multiformats/cid')
```
@rvagg
Copy link
Member Author

rvagg commented Mar 31, 2021

attempting to fix #73 which is attempting to fix a bad auto-publish in #70, 🤞

@rvagg rvagg merged commit 6d3bb8a into master Mar 31, 2021
@rvagg rvagg deleted the rvagg/bad-publish-bump branch March 31, 2021 06:37
@rvagg rvagg mentioned this pull request Mar 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants