Compare commits

..

2 Commits
0.0.6 ... 0.0.7

Author SHA1 Message Date
LukeHagar
ec6c29f064 Bump version to 0.0.7 2023-04-18 18:07:31 +00:00
Luke Hagar
caa2765c5f Update package.mustache 2023-04-18 13:06:36 -05:00
5 changed files with 8 additions and 16 deletions

View File

@@ -5,7 +5,7 @@ files:
destinationFilename: package.json destinationFilename: package.json
npmName: plexjs npmName: plexjs
npmRepository: lukehagar npmRepository: lukehagar
npmVersion: 0.0.6 npmVersion: 0.0.7
useSingleRequestParameter: true useSingleRequestParameter: true
sortParamsByRequiredFlag: true sortParamsByRequiredFlag: true
gitUserID: lukehagar gitUserID: lukehagar

View File

@@ -1,4 +1,4 @@
## plexjs@0.0.6 ## plexjs@0.0.7
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments: This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_ _published:_
``` ```
npm install plexjs@0.0.6 --save npm install plexjs@0.0.7 --save
``` ```
_unPublished (not recommended):_ _unPublished (not recommended):_

View File

@@ -1,12 +1,12 @@
{ {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.0.6", "version": "0.0.7",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.0.6", "version": "0.0.7",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "^0.26.1", "axios": "^0.26.1",

View File

@@ -1,6 +1,6 @@
{ {
"name": "@lukehagar/plexjs", "name": "@lukehagar/plexjs",
"version": "0.0.6", "version": "0.0.7",
"description": "Community Made Plex JS/TS Module", "description": "Community Made Plex JS/TS Module",
"author": "Luke Hagar", "author": "Luke Hagar",
"type": "module", "type": "module",
@@ -25,7 +25,7 @@
"main": "./dist/index.js", "main": "./dist/index.js",
"typings": "./dist/index.d.ts", "typings": "./dist/index.d.ts",
"scripts": { "scripts": {
"build": "tsc --outDir ./dist/", "build": "tsc --outDir ./dist",
"prepare": "npm run build" "prepare": "npm run build"
}, },
"dependencies": { "dependencies": {
@@ -35,8 +35,5 @@
"devDependencies": { "devDependencies": {
"@types/node": "^12.11.5", "@types/node": "^12.11.5",
"typescript": "^4.0" "typescript": "^4.0"
},
"publishConfig": {
"registry": "lukehagar"
} }
} }

View File

@@ -25,7 +25,7 @@
"main": "./dist/index.js", "main": "./dist/index.js",
"typings": "./dist/index.d.ts", "typings": "./dist/index.d.ts",
"scripts": { "scripts": {
"build": "tsc --outDir ./dist/", "build": "tsc --outDir ./dist",
"prepare": "npm run build" "prepare": "npm run build"
}, },
"dependencies": { "dependencies": {
@@ -35,10 +35,5 @@
"devDependencies": { "devDependencies": {
"@types/node": "^12.11.5", "@types/node": "^12.11.5",
"typescript": "^4.0" "typescript": "^4.0"
}{{#npmRepository}},{{/npmRepository}}
{{#npmRepository}}
"publishConfig": {
"registry": "{{npmRepository}}"
} }
{{/npmRepository}}
} }