eternal-timer 2.0.2 → 2.0.3

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 +5 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -17,7 +17,7 @@ npm install eternal-timer
17
17
 
18
18
  ### Basic Example
19
19
 
20
- ```typescript
20
+ ```javascript
21
21
  import { TimersManager } from 'eternal-timer';
22
22
 
23
23
  async function main() {
@@ -110,6 +110,8 @@ type Timer = {
110
110
  - `npm run dev`: Run in development mode with nodemon
111
111
  - `npm run build`: Compile TypeScript
112
112
  - `npm start`: Run compiled JavaScript
113
+ - `npm run test`: Test the compiled code
114
+ - `npm run lint`: Lint all codes
113
115
 
114
116
  ## Storage
115
117
 
@@ -128,3 +130,5 @@ Licensed under the Apache License, Version 2.0. See the `LICENSE` file for detai
128
130
  ## Repository
129
131
 
130
132
  https://github.com/SUKEsann2000/eternal-timer
133
+
134
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eternal-timer",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "timer for node.js package",
5
5
  "scripts": {
6
6
  "dev": "nodemon --watch src --exec ts-node src/index.ts",