Skip to content
This repository has been archived by the owner on Dec 24, 2022. It is now read-only.

Commit

Permalink
Change package scope for all NPM registries
Browse files Browse the repository at this point in the history
  • Loading branch information
aw committed Nov 24, 2019
1 parent 63f43c1 commit f2e8b4c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
with:
node-version: 12.x
registry-url: 'https://registry.npmjs.org/'
scope: '@aw'
scope: '@on-prem'
- name: Publish to NPM registry
run: |
npm config set scope "@aw"
npm config set scope "@on-prem"
npm publish --access public
env:
CI: true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Installation

```
npm install @aw/on-prem-meta
npm install @on-prem/on-prem-meta
```

or
Expand Down
2 changes: 1 addition & 1 deletion lib/on-prem-meta.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
exports.options = options;

needle.defaults({
user_agent: 'nodeclient-on-prem-meta/1.0.4',
user_agent: 'nodeclient-on-prem-meta/1.0.5',
response_timeout: 10000 // 10 seconds
});

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"description": "Official On-Prem Meta REST API client and helper library",
"author": "Alexander Williams, Unscramble <license@unscramble.jp>",
"name": "@aw/on-prem-meta",
"version": "1.0.4",
"name": "@on-prem/on-prem-meta",
"version": "1.0.5",
"license": "MIT",
"homepage": "https://on-premises.com",
"main": "lib/on-prem-meta.js",
Expand Down
2 changes: 1 addition & 1 deletion src/on-prem-meta.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ exports.settings = settings
exports.options = options

needle.defaults
user_agent: 'nodeclient-on-prem-meta/1.0.4'
user_agent: 'nodeclient-on-prem-meta/1.0.5'
response_timeout: 10000 # 10 seconds

exports.buildRequest = (params = {method: 'GET', endpoint: 'version'}, callback) ->
Expand Down

0 comments on commit f2e8b4c

Please sign in to comment.