An educational pure functional programming library in TypeScript
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use bun publish instead of npm

+3 -2
+3 -2
.tangled/workflows/ci.yml
··· 47 47 48 48 - name: "Publish to npm (on version tag)" 49 49 command: | 50 + BUN=$(echo /nix/store/*bun*/bin/bun) 50 51 if [[ "${TANGLED_REF}" == refs/tags/v* ]]; then 51 52 echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc 52 - npm publish --access public 53 - echo "Published $(node -p "require('./package.json').version") to npm" 53 + $BUN publish --access public 54 + echo "Published to npm" 54 55 else 55 56 echo "Skipping publish (not a version tag)" 56 57 fi