Skip to content
Draft
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
*
!assets/stylesheets/**/*
!assets/images/**/*
!assets/icons/**/*
5 changes: 5 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,9 @@ namespace :shipyard do
icons = Shipyard::Icons.new args.icon_directory, args.output_directory
icons.write
end

desc 'Publish project to npm as a scoped package @codeship/shipyard'
task :console do
sh 'npm publish --access public'

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two questions:

  1. Does this need to authenticate with anything?
  2. Do we need to add this command to the CI deploy stage?

end
end