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

faf-tool

v0.1.9

Published

Tool for maintain FAF modules

Downloads

38

Readme

FAF Tool

Command line utility which helps in setting up faf project

Table of Contents

  1. Install
  2. Basic Usage
  3. Commands
  4. CLI Options
  5. Settings File

Install

npm install -g faf-tool

##Basic Usage


mkdir diamond-feature
cd diamond-feature
faf-tool

running faf-tool without command shows help and copy settings.json.example to current folder rename settings.json.example to settings.json and edit it, for example:

{
  "svn-server": "svnserver.jaspersoft.com",
  "release-cycle": "diamond",
  "feature-name": "feature",
  "jasperserver-branch": "diamond-ce-feature",
  "jasperserver-pro-branch": "diamond-pro-feature",
  "modules": [
    "bi-charts",
    "bi-dashboard",
    "bi-report",
    "bi-repository",
    "js-sdk",
    "jrs-ui",
    "jrs-ui-pro"
  ]
}

Prepare local project to work

faf-tool setup

⬆ back to top

##Commands

setup

Checkout selected modules and run npm init


faf-tool setup

init

Initialize for each module: npm install && npm prune && grunt init


faf-tool init

watch

Start watchers assets like js,hml,css etc in all faf packages


faf-tool watch

To find out local deployment you have to prepare .workspace file

update-init

Update and initialize for each module: svn up && npm install && npm prune && grunt init


faf-tool update-init

checkout-full

Checking out faf modules and jrs if specified


faf-tool create-feature

switch

Switch repository to specified branch


faf-tool switch

downmerge

Runs svn up and svn merge from trunk command for FAF modules and JRS Accepts "--accept=" svn argument. Default "postpone". Accepts "--separate-changelist=<true|false>" svn argument. Default "true".


faf-tool downmerge

removecl

removes all changelists which was created during downmerge task executed with --separate-changelist=true wich is set by default


faf-tool removecl

cleanup

runs svn cleanup for each module


faf-tool cleanup

⬆ back to top

CLI options

  • --dry-run=true
  • --verbose
  • --no-time - hide time report
  • --username=<username> - svn username
  • --password=<password> - svn password
  • --accept=<value> - argument for svn merge command, works for "downmerge" task. Default "postpone".
  • --parallel=<true|false> - argument for parallel command execution, works for most tasks which use svn. Default "true".
  • --separate-changelist=<true|false> - argument for adding module changes to a separate svn changelist, works for "downmerge" task. Default "true"

##Dry run example

faf-tool create-feature --dry-run

⬆ back to top

##Settings File Look at settings.json samples

{
  // by default it uses "https://" protocol
  "svn-server": "svnserver.jaspersoft.com",
  
  // branch name parts
  //name of the feature branch or "trunk"
  "feature-name": "<feature name>", 
  
  // optional parameter for features without release cycle like bugfix
  "release-cycle": "<release name>", 
  

  // optional JRS branches names used for checkout JRS
  "jasperserver-branch": "<existing jrs ce branch name>",
  "jasperserver-pro-branch": "<existing jrs pro branch name>",

  // optional JRS location 
  "jasperserver-ci-path": "<path to ci jrs>",
  "jasperserver-pro-ci-path": "<path to ci jrs-pro>",

  // optional svn credentials
  "username": "username",
  "password":"password",

  "modules": [
    "bi-charts",
    "bi-dashboard",
    "bi-report",
    "bi-repository",
    "js-sdk",
    "jrs-ui",
    "jrs-ui-pro"
  ]
}

⬆ back to top