dart-sass icon indicating copy to clipboard operation
dart-sass copied to clipboard

NPM Pack is failing for version 1.62.1

Open vimalchandts opened this issue 1 year ago • 1 comments

Hello, Facing an issue during the npm pack as the version is missing in the package.json.

vimalchandts avatar Jun 24 '24 08:06 vimalchandts

Dart Sass 1.62.1 is more than a year old. It's possible there was some sort of issue with that release, but if there was, we're not able to change it.

Is this still an issue with the latest version of the sass package (1.77.6)?

jathak avatar Jun 24 '24 21:06 jathak

I guess you're trying to pack the source code as npm tarball. For this project you have to first build the npm package, and then you can pack the build/npm folder:

dart pub get
dart run grinder pkg-npm-release
cd build/npm
npm pack

ntkme avatar Aug 07 '24 21:08 ntkme