Skip to content

Commit

Permalink
refactor(Naming): rename package
Browse files Browse the repository at this point in the history
BREAKING CHANGE: new package name is now `@toolisticon/nativescript-buildhelper` and debug var is `tns_buildhelper_debug`
  • Loading branch information
hypery2k committed Mar 1, 2019
1 parent a8eb37a commit 5e44cb0
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 Holisticon AG
Copyright (c) 2019 Holisticon AG

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# NativeScript Build Helper ![apple](https://cdn3.iconfinder.com/data/icons/picons-social/57/16-apple-32.png) ![android](https://cdn4.iconfinder.com/data/icons/logos-3/228/android-32.png)

[![Build Status](https://travis-ci.org/holisticon/nativescript-buildhelper.svg?branch=master)](https://travis-ci.org/holisticon/nativescript-buildhelper)
[![npm version](https://badge.fury.io/js/%40holisticon%2Fnativescript-buildhelper.svg)](https://badge.fury.io/js/%40holisticon%2Fnativescript-buildhelper)
[![Maintainability](https://api.codeclimate.com/v1/badges/ed77fd2de5888c6a3300/maintainability)](https://codeclimate.com/github/holisticon/nativescript-buildhelper/maintainability)
[![Issue Count](https://codeclimate.com/github/holisticon/nativescript-buildhelper/badges/issue_count.svg)](https://codeclimate.com/github/holisticon/nativescript-buildhelper)
[![Dependency Status](https://david-dm.org/holisticon/nativescript-buildhelper.svg)](https://david-dm.org/holisticon/nativescript-buildhelper)
[![devDependency Status](https://david-dm.org/holisticon/nativescript-buildhelper/dev-status.svg)](https://david-dm.org/holisticon/nativescript-buildhelper#info=devDependencies)
[![Build Status](https://travis-ci.org/toolisticon/nativescript-buildhelper.svg?branch=master)](https://travis-ci.org/toolisticon/nativescript-buildhelper)
[![npm version](https://badge.fury.io/js/%40toolisticon%2Fnativescript-buildhelper.svg)](https://badge.fury.io/js/%40toolisticon%2Fnativescript-buildhelper)
[![Maintainability](https://api.codeclimate.com/v1/badges/ed77fd2de5888c6a3300/maintainability)](https://codeclimate.com/github/toolisticon/nativescript-buildhelper/maintainability)
[![Issue Count](https://codeclimate.com/github/toolisticon/nativescript-buildhelper/badges/issue_count.svg)](https://codeclimate.com/github/toolisticon/nativescript-buildhelper)
[![Dependency Status](https://david-dm.org/toolisticon/nativescript-buildhelper.svg)](https://david-dm.org/toolisticon/nativescript-buildhelper)
[![devDependency Status](https://david-dm.org/toolisticon/nativescript-buildhelper/dev-status.svg)](https://david-dm.org/toolisticon/nativescript-buildhelper#info=devDependencies)

This NPM package helps automate the release of NativeScript applications

Expand All @@ -21,13 +21,13 @@ This NPM package helps automate the release of NativeScript applications
## Installation

```
npm install @holisticon/nativescript-buildhelper --save-dev
npm install @toolisticon/nativescript-buildhelper --save-dev
```

Or if you want to use the development version (nightly build), which maybe not stable!:

```
npm install @holisticon/nativescript-buildhelper@next --save-dev
npm install @toolisticon/nativescript-buildhelper@next --save-dev
```

## <a name="usage"></a> Usage
Expand Down Expand Up @@ -62,8 +62,8 @@ node-inspector --web-port=8282

You can then open chrome at *http://127.0.0.1:8282/?port=5858* for debugging.

If you want to have verbose logging add NODE_DEBUG=holisticon_tns:
If you want to have verbose logging add NODE_DEBUG=tns_buildhelper_debug:

```
NODE_DEBUG=holisticon_tns node tns-buldnumbering
NODE_DEBUG=tns_buildhelper_debug node tns-buldnumbering
```
2 changes: 1 addition & 1 deletion lib/buildnumbering.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { exec } from 'child_process';
// e.g. release_notes.js 42 -> uses 42 as build number

const ARGS = process.argv.slice(2);
const DEBUG_ENV = 'holisticon_tns';
const DEBUG_ENV = 'tns_buildhelper_debug';

let debugLog = util.debuglog(DEBUG_ENV);

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@holisticon/nativescript-buildhelper",
"name": "@toolisticon/nativescript-buildhelper",
"version": "0.3.1",
"description": "Basic NPM package for helping on automate releasing of NativeScript Apps",
"bin": {
Expand Down Expand Up @@ -54,11 +54,11 @@
"keywords": [
"angular2",
"nativescript",
"holisticon"
"toolisticon"
],
"repository": {
"type": "git",
"url": "https://github.com/holisticon/nativescript-buildhelper.git"
"url": "https://github.com/toolisticon/nativescript-buildhelper.git"
},
"author": "Martin Reinhardt",
"license": "MIT",
Expand Down

0 comments on commit 5e44cb0

Please sign in to comment.