com.kylin.di 1.1.0 → 1.1.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.
- package/.github/workflows/publish.yml +8 -4
- package/README.md +1 -1
- package/package.json +5 -1
|
@@ -8,6 +8,9 @@ on:
|
|
|
8
8
|
jobs:
|
|
9
9
|
publish:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
|
+
permissions:
|
|
12
|
+
contents: read
|
|
13
|
+
id-token: write
|
|
11
14
|
steps:
|
|
12
15
|
- uses: actions/checkout@v4
|
|
13
16
|
|
|
@@ -16,7 +19,8 @@ jobs:
|
|
|
16
19
|
node-version: '20'
|
|
17
20
|
registry-url: 'https://registry.npmjs.org'
|
|
18
21
|
|
|
19
|
-
- name:
|
|
20
|
-
run: npm
|
|
21
|
-
|
|
22
|
-
|
|
22
|
+
- name: Upgrade npm for OIDC support
|
|
23
|
+
run: npm install -g npm@latest
|
|
24
|
+
|
|
25
|
+
- name: Publish with trusted publishing
|
|
26
|
+
run: npm publish --access public
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "com.kylin.di",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"displayName": "KDI (Kylin Dependency Injection)",
|
|
5
5
|
"description": "Scope-based dependency injection framework for Unity 6. Field injection only, hierarchical scopes.",
|
|
6
6
|
"unity": "6000.0",
|
|
7
7
|
"documentationUrl": "",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/ToolStorage/KDI"
|
|
12
|
+
},
|
|
9
13
|
"keywords": [
|
|
10
14
|
"dependency-injection",
|
|
11
15
|
"di",
|