@mtcinema/core 1.0.0 → 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.
- package/.github/workflows/publish.yaml +21 -0
- package/README.md +19 -0
- package/package.json +2 -2
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: Publish
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v4
|
|
17
|
+
- uses: actions/setup-node@v4
|
|
18
|
+
with:
|
|
19
|
+
node-version: 24
|
|
20
|
+
registry-url: 'https://registry.npmjs.org'
|
|
21
|
+
- run: npm publish
|
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.
|
|
3
|
+
"version": "1.0.2",
|
|
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": {
|