obs-scheduler 0.0.2 → 0.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 (3) hide show
  1. package/README.md +3 -0
  2. package/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # obs-scheduler
2
2
 
3
+ ![NPM Version](https://img.shields.io/npm/v/obs-scheduler?color=%23302E31)
4
+ ![Static Badge](https://img.shields.io/badge/OBS-302E31?logo=obsstudio)
5
+
3
6
  A CLI for scheduling actions in OBS.
4
7
 
5
8
  ## Install
package/cli.js CHANGED
@@ -17,7 +17,7 @@ program
17
17
  undefined,
18
18
  )
19
19
  .option('-c, --config <file-path>', 'config file path')
20
- .version('0.0.2')
20
+ .version('0.0.3')
21
21
  .action(run);
22
22
 
23
23
  await program.parseAsync(process.argv);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obs-scheduler",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "A CLI tool for scheduling OBS functionality.",
5
5
  "author": "edonv",
6
6
  "type": "module",