@mtcinema/core 1.0.0 → 1.0.1

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 +19 -0
  2. package/package.json +2 -2
package/README.md ADDED
@@ -0,0 +1,19 @@
1
+ ### NPM package versioning
2
+
3
+ Patch - minor changes, bug fixes (1.0.0 -> 1.0.1)
4
+
5
+ ```
6
+ npm version patch
7
+ ```
8
+
9
+ Minor - more global update, new feature (1.0.0 -> 1.1.0)
10
+
11
+ ```
12
+ npm version minor
13
+ ```
14
+
15
+ Major - global update, core functionality is changed or updated (1.0.0 -> 2.0.0)
16
+
17
+ ```
18
+ npm version major
19
+ ```
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@mtcinema/core",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Core utilities and shared setup",
5
5
  "keywords": [],
6
6
  "license": "ISC",
7
7
  "author": {
8
8
  "name": "Mykhailo T",
9
- "email": "m.tk.chuk@gmail.com"
9
+ "email": "m.tk.chuk@gmail.com"
10
10
  },
11
11
  "type": "module",
12
12
  "publishConfig": {