Empty Package/No JS files (neverthrow v6.2.0)
ninoseki opened this issue · 3 comments
ninoseki commented
Hello, first of all, thanks for creating a very useful library.
I realized that there is an issue with the latest version v6.2.0. It does not contain JS files.
$ wget https://registry.npmjs.org/neverthrow/-/neverthrow-6.2.0.tgz
$ tar xf neverthrow-6.2.0.tgz
$ tree package/
package/
├── LICENSE
├── README.md
└── package.json
1 directory, 3 files
I guess there is something wrong with the build script or CI.
ninoseki commented
It's strange because I can confirm dist files via npm pack
. Maybe there was something wrong before npm publish
?
$ git clone https://github.com/supermacro/neverthrow.git
$ cd neverthrow
$ npm pack
$ tar xf neverthrow-6.2.0.tgz
$ tree package/
package/
├── LICENSE
├── README.md
├── dist
│ ├── index.cjs.js
│ ├── index.d.ts
│ └── index.es.js
└── package.json
2 directories, 6 files