Terminal Markdown previewer — GUI-like experience.
1
fork

Configure Feed

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

docs: npm packages readme

RivoLink 588e377f d9b03aa5

+5 -2
+1 -1
npm/package.json
··· 12 12 "bin": { 13 13 "leaf": "./bin/leaf.js" 14 14 }, 15 - "files": ["bin/leaf.js"], 15 + "files": ["bin/leaf.js", "README.md"], 16 16 "optionalDependencies": { 17 17 "@rivolink/leaf-linux-x64": "0.0.0", 18 18 "@rivolink/leaf-linux-arm64": "0.0.0",
+4 -1
npm/scripts/publish.sh
··· 38 38 chmod +x "$pkg_dir/leaf" 39 39 fi 40 40 41 + cp "$NPM_DIR/../README.md" "$pkg_dir/README.md" 41 42 npm publish "$pkg_dir" --access public 42 43 echo "Published @rivolink/leaf-$platform@$VERSION" 43 44 44 - rm -f "$pkg_dir/leaf" "$pkg_dir/leaf.exe" 45 + rm -f "$pkg_dir/leaf" "$pkg_dir/leaf.exe" "$pkg_dir/README.md" 45 46 done 46 47 47 48 node -e " ··· 53 54 fs.writeFileSync('$NPM_DIR/package.json', JSON.stringify(pkg, null, 2) + '\n'); 54 55 " 55 56 57 + cp "$NPM_DIR/../README.md" "$NPM_DIR/README.md" 56 58 npm publish "$NPM_DIR" --access public 59 + rm -f "$NPM_DIR/README.md" 57 60 echo "Published @rivolink/leaf@$VERSION"