Skip to content

Commit

Permalink
Merge pull request #7 from barinbritva/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
barinbritva authored Mar 4, 2021
2 parents a2ed5e4 + cfc85fd commit d47101f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.2.0] - 2021-03-04
### Changed
- Windows support (by rewriting tasks from bash to js).
- Project option: `package` for `npm` or any `app`.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "init-typescript-app",
"version": "1.0.10",
"version": "1.2.0",
"description": "Initialize TypeScript app by running single command.",
"keywords": [
"typescript",
Expand Down Expand Up @@ -38,7 +38,7 @@
"build:dev": "ts-node --project ./tsconfig-dev.json ./tasks/run-build.ts -d",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"release": "ts-node ./tasks/release.ts"
"release": "ts-node ./tasks/run-release.ts"
},
"devDependencies": {
"@types/ejs": "^3.0.4",
Expand Down
2 changes: 1 addition & 1 deletion scaffold/package.json.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build:dev": "ts-node --project ./tsconfig-dev.json ./tasks/run-build.ts -d",
"start": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"<% if (isNpmPackage) {%>,
"release": "NODE_ENV=production ts-node ./tasks/release.ts"<% } %>
"release": "ts-node ./tasks/run-release.ts"<% } %>
},<% if (author) { %>
"author": {
"name": "<%= author %>"
Expand Down

0 comments on commit d47101f

Please sign in to comment.