npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

grunt-push-svn

v0.2.2

Published

Push local directory to a specified SVN server

Downloads

146

Readme

grunt-push-svn

Build Status

Push local directory to a specified SVN server

Getting Started

This plugin requires svn command line and Grunt ~0.4.1.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-push-svn --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-push-svn');

The "push_svn" task

Overview

In your project's Gruntfile, add a section named push_svn to the data object passed into grunt.initConfig().

grunt.initConfig({
  push_svn: {
    options: {
      remove: false, 
      pushIgnore: ['**/*.tmp'],
      removeIgnore: ['**/*.gif']
    },
    main: {
      src: '/path to your local directory',
      dest: 'https://svn.example.com/path/to/your/repo',
      tmp: './.build'
    },
  },
})

Options

options.username

Default value: undefined

If the target repo need authentication and you don't have the authentication saved, set username and password in Options.

options.password

Type: String

options.remove

Type: Boolean Default value: false

With options.remove enabled, remote file will be removed if it does not exist in local directory.

options.removeIgnore

Type: Array Default value: []

Specify exclude patterns for options.remove

options.pushIgnore

Type: Array Default value: []

Specify exclude patterns for local files.

options.message

Type: String Default value: "committed with grunt-push-svn"

options.trymkdir

Type: Boolean Default value: false

Try to mkdir in remote repo if dest does not exist.

options.svnPath

Type: String Default value: "svn"

Path to svn(optional)

Usage Examples

Deploy code to SAE or BAE

Deployment of SAE or BAE are based on SVN, so grunt-push-svn is just the perfect tool to help you do that.

grunt.initConfig({
  push_svn: {
    options: {},
    src: '/home/dong/projects/sae_bae_project',
    dest: 'https://svn.sinaapp.com/myapp/subfolder',
    tmp: './tmp'
  },
})

Release History

v0.1.0 (2013-06-07)

Initial release

v0.1.1 (2013-06-08)

Fix dependencies

v0.1.2 (2013-06-08)

Force ignore .svn from src

v0.1.3 (2013-06-09)

Check src existence; Print friendly message

v0.1.4 (2013-06-09)

Ignore .svn and .git files

v0.1.5 (2013-06-09)

Fix ignore files on windows

v0.1.6 (2013-07-18)

Update readme

v0.1.7 (2013-08-29)

Add option trymkdir

v0.1.8 (2013-08-30)

Fix checkout bug; travis-ci

v0.1.9 (2013-12-12)

Add authontication support

v0.2.0 (2014-05-20)

Add option svnPath

v0.2.1 (2014-05-23)

Make trymkdir recursive