Skip to content

Commit

Permalink
update some scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
dalikewara committed Mar 18, 2024
1 parent 72f85ca commit 5f63230
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions .npmrc.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry.npmjs.org/:_authToken=your_auth_token
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

## 2024

- **v4.5.0 - v4.5.1** (2024-03-18)
- **v4.5.0 - v4.5.2** (2024-03-18)
- Initial release
4 changes: 2 additions & 2 deletions _base_structure/infra/start.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh

tsc
tsc-alias
tsc || ./node_modules/.bin/tsc
tsc-alias || ./node_modules/.bin/tsc-alias
node ./dist/main.js
2 changes: 1 addition & 1 deletion _base_structure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "",
"main": "./dist/main.js",
"scripts": {
"build": "tsc && tsc-alias",
"build": "tsc || ./node_modules/.bin/tsc && tsc-alias || ./node_modules/.bin/tsc-alias",
"start": "node ./dist/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const https = require('https');
const child_process = require('child_process');

const name = "AyaPingPing (TypeScript)";
const version = "v4.5.1";
const version = "v4.5.2";
const language = "TypeScript";
const generatorUrl = "https://raw.githubusercontent.com/dalikewara/ayapingping-sh/master/main_v4.sh";
const generatorFile = "main.sh";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ayapingping-ts",
"version": "4.5.1",
"version": "4.5.2",
"description": "ayapingping-ts generates standard project structure to build applications in NodeJS-TypeScript that follow Clean Architecture and Feature-Driven Design concept",
"author": "Dali Kewara",
"license": "MIT",
Expand Down
1 change: 0 additions & 1 deletion publish-to-npm.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/bin/sh

npm login
npm publish

0 comments on commit 5f63230

Please sign in to comment.