typescript-mock-server 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -92,6 +92,7 @@ Following dependencies are being used:
92
92
 
93
93
 
94
94
  ## Release notes (will be moved to GitHub in the future)
95
+ - v1.0.2 - Use correct command to push tags
95
96
  - v1.0.1 - Include correct files in GIT tag
96
97
  - v1.0.0 - Breaking change: renamed Server config to Request and added interval for delay
97
98
  - v0.0.11 - Add items to roadmap, bug fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-mock-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Simple mock server that can be used in front end development. Instead of creating json files you can just publish TypeScript objects as json",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -8,7 +8,7 @@
8
8
  "start": "ts-node-dev src/index.ts",
9
9
  "update-deps": "npm update",
10
10
  "get-version": "echo $npm_package_version",
11
- "publish-to-npm": "git tag -a ${npm_package_version} -m \"v${npm_package_version}\" && git push && npm publish"
11
+ "publish-to-npm": "git tag -a ${npm_package_version} -m \"v${npm_package_version}\" && git push origin ${npm_package_version} && npm publish"
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",