@tnlmedia/inkmagine-gui 0.1.0

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/.editorconfig ADDED
@@ -0,0 +1,12 @@
1
+ root = true
2
+
3
+ [*]
4
+ charset = utf-8
5
+ indent_size = 2
6
+ indent_style = space
7
+ end_of_line = lf
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [*.md]
12
+ trim_trailing_whitespace = false
@@ -0,0 +1,23 @@
1
+ name: Publish to npmjs
2
+ on:
3
+ push:
4
+ tags:
5
+ - '*'
6
+ jobs:
7
+ publish:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - uses: actions/setup-node@v4
12
+ with:
13
+ node-version: 22
14
+ registry-url: https://registry.npmjs.org/
15
+ - name: Update package.json version
16
+ run: |
17
+ TAG=$(git tag --points-at HEAD | tail -n 1)
18
+ sed -i "s/\"version\": \".*\"/\"version\": \"$TAG\"/g" package.json
19
+ cat package.json
20
+ - run: npm ci
21
+ - run: npm publish --access public
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/LICENSE.md ADDED
@@ -0,0 +1,13 @@
1
+ Copyright 2024 TNL Media Group
2
+
3
+ Licensed under the Apache License, Version 2.0 (the "License");
4
+ you may not use this file except in compliance with the License.
5
+ You may obtain a copy of the License at
6
+
7
+ http://www.apache.org/licenses/LICENSE-2.0
8
+
9
+ Unless required by applicable law or agreed to in writing, software
10
+ distributed under the License is distributed on an "AS IS" BASIS,
11
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
+ See the License for the specific language governing permissions and
13
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Inkmagine GUI tool
2
+
3
+ Inkmagine unify components and styles
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ npm install @tnlmedia/inkmagine-gui
9
+ ```
package/package.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@tnlmedia/inkmagine-gui",
3
+ "version": "0.1.0",
4
+ "description": "Inkmagine GUI components",
5
+ "author": "TNL Media Group <to.it@tnlmediagene.com>",
6
+ "keywords": [
7
+ "inkmagine",
8
+ "vue",
9
+ "components"
10
+ ],
11
+ "scripts": {},
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "git+https://github.com/tnlmedia/inkmagine-gui.git"
15
+ },
16
+ "license": "Apache-2.0"
17
+ }