# np
A better npm publish
超棒的npm发布包。
# Interactive UI
Run np without arguments to launch the interactive UI that guides you through publishing a new version.
# Config
package.json
{
"name": "superb-package",
"np": {
"yarn": false,
"contents": "dist"
}
}
.np-config.json
{
"yarn": false,
"contents": "dist"
}
.np-config.js or .np-config.cjs
module.exports = {
yarn: false,
contents: 'dist'
};