yank-note-registry 1.0.1 → 1.0.5
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/extensions.json +8 -0
- package/index.json +103 -18
- package/package.json +8 -2
- package/.github/workflows/npm-publish.yml +0 -31
package/extensions.json
ADDED
package/index.json
CHANGED
|
@@ -1,18 +1,103 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
{
|
|
11
|
-
"
|
|
12
|
-
"
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"name": "yank-note-extension-git-push",
|
|
4
|
+
"version": "1.0.0-alpha.1",
|
|
5
|
+
"displayName": "Git Push",
|
|
6
|
+
"displayName_ZH-CN": "Git 推送",
|
|
7
|
+
"description": "Run Git commit and push to remote repository",
|
|
8
|
+
"description_ZH-CN": "运行 Git 提交并推送到远程仓库",
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": {
|
|
11
|
+
"name": "purocean",
|
|
12
|
+
"email": "purocean@gmail.com"
|
|
13
|
+
},
|
|
14
|
+
"license": "AGPL-3.0",
|
|
15
|
+
"homepage": "https://github.com/purocean/yank-note-extension/packages/git-push",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/purocean/yank-note-extension.git"
|
|
19
|
+
},
|
|
20
|
+
"main": "./lib/index.js",
|
|
21
|
+
"icon": "https://unpkg.com/yank-note-extension-git-push@1.0.0-alpha.1/./icon.png",
|
|
22
|
+
"compatibility": [
|
|
23
|
+
{
|
|
24
|
+
"extension": "*",
|
|
25
|
+
"engine": ">=3.29.0"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
28
|
+
"bugs": {
|
|
29
|
+
"url": "https://github.com/purocean/yank-note-extension/issues"
|
|
30
|
+
},
|
|
31
|
+
"dist": {
|
|
32
|
+
"integrity": "sha512-Dbc4fwv23aCYp9/rVcJ8YixslLao8A/1SJSH3wNuRTg6MAlnuscTxSV044mmObFUiFpmjQ4XgzRSTPkFhlVHJg==",
|
|
33
|
+
"shasum": "d91a15020d6b5eed77560d21814d839c79a17f46",
|
|
34
|
+
"tarball": "https://registry.npmjs.org/yank-note-extension-git-push/-/yank-note-extension-git-push-1.0.0-alpha.1.tgz",
|
|
35
|
+
"fileCount": 6,
|
|
36
|
+
"unpackedSize": 41253
|
|
37
|
+
},
|
|
38
|
+
"directories": {},
|
|
39
|
+
"maintainers": [
|
|
40
|
+
{
|
|
41
|
+
"name": "purocean",
|
|
42
|
+
"email": "purocean@outlook.com"
|
|
43
|
+
}
|
|
44
|
+
],
|
|
45
|
+
"origin": "official"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"name": "yank-note-extension-example",
|
|
49
|
+
"version": "0.0.3",
|
|
50
|
+
"displayName": "Example Extension",
|
|
51
|
+
"description": "HelloWorld example extension",
|
|
52
|
+
"displayName_ZH-CN": "示例拓展",
|
|
53
|
+
"description_ZH-CN": "HelloWorld 示例拓展",
|
|
54
|
+
"repository": {
|
|
55
|
+
"type": "git",
|
|
56
|
+
"url": "git+ssh://git@github.com/purocean/yank-note-extension-example.git"
|
|
57
|
+
},
|
|
58
|
+
"author": {
|
|
59
|
+
"name": "purocean",
|
|
60
|
+
"email": "purocean@gmail.com"
|
|
61
|
+
},
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"keywords": [],
|
|
64
|
+
"homepage": "https://github.com/purocean/yank-note-extension-example",
|
|
65
|
+
"main": "./lib/index.js",
|
|
66
|
+
"icon": "https://unpkg.com/yank-note-extension-example@0.0.3/./icon.png",
|
|
67
|
+
"compatibility": [
|
|
68
|
+
{
|
|
69
|
+
"extension": "*",
|
|
70
|
+
"engine": ">=3.29.0"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"themes": [
|
|
74
|
+
{
|
|
75
|
+
"name": "Red",
|
|
76
|
+
"css": "./themes/demo1.css"
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "Green",
|
|
80
|
+
"css": "./themes/demo2.css"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"gitHead": "14921e3d272fcc04666491efb9f8a81d02ef36cd",
|
|
84
|
+
"bugs": {
|
|
85
|
+
"url": "https://github.com/purocean/yank-note-extension-example/issues"
|
|
86
|
+
},
|
|
87
|
+
"dist": {
|
|
88
|
+
"integrity": "sha512-xMYUVhNV3aGts1Y29P3/ScWejKliT//tVucgyCLUipt6LXzopZWANMevyn0oZGAo/UqikDURMUtiygg69lcZlw==",
|
|
89
|
+
"shasum": "fe3d5d9fb15e7b0eb3710e676fe5666169de4003",
|
|
90
|
+
"tarball": "https://registry.npmjs.org/yank-note-extension-example/-/yank-note-extension-example-0.0.3.tgz",
|
|
91
|
+
"fileCount": 10,
|
|
92
|
+
"unpackedSize": 27068
|
|
93
|
+
},
|
|
94
|
+
"directories": {},
|
|
95
|
+
"maintainers": [
|
|
96
|
+
{
|
|
97
|
+
"name": "purocean",
|
|
98
|
+
"email": "purocean@outlook.com"
|
|
99
|
+
}
|
|
100
|
+
],
|
|
101
|
+
"origin": "registry"
|
|
102
|
+
}
|
|
103
|
+
]
|
package/package.json
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yank-note-registry",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Yank Note Extension Registry",
|
|
5
5
|
"main": "index.json",
|
|
6
6
|
"repository": "git@github.com:purocean/yank-note-registry.git",
|
|
7
7
|
"author": "purocean <purocean@gmail.com>",
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"private": false
|
|
9
|
+
"private": false,
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "node build.js"
|
|
12
|
+
},
|
|
13
|
+
"devDependencies": {
|
|
14
|
+
"node-fetch": "2"
|
|
15
|
+
}
|
|
10
16
|
}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
|
|
2
|
-
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
|
|
3
|
-
|
|
4
|
-
name: Node.js Package
|
|
5
|
-
|
|
6
|
-
on: workflow_dispatch
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
bump-version:
|
|
10
|
-
runs-on: ubuntu-latest
|
|
11
|
-
steps:
|
|
12
|
-
- uses: actions/checkout@v3
|
|
13
|
-
with:
|
|
14
|
-
token: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
|
|
15
|
-
- run: git config --global user.name 'action'
|
|
16
|
-
- run: git config --global user.email 'noreply@github.com'
|
|
17
|
-
- run: npm version patch -m "[RELEASE] %s"
|
|
18
|
-
- run: git push
|
|
19
|
-
|
|
20
|
-
publish-npm:
|
|
21
|
-
needs: bump-version
|
|
22
|
-
runs-on: ubuntu-latest
|
|
23
|
-
steps:
|
|
24
|
-
- uses: actions/checkout@v3
|
|
25
|
-
- uses: actions/setup-node@v3
|
|
26
|
-
with:
|
|
27
|
-
node-version: 16
|
|
28
|
-
registry-url: https://registry.npmjs.org/
|
|
29
|
-
- run: npm publish
|
|
30
|
-
env:
|
|
31
|
-
NODE_AUTH_TOKEN: ${{secrets.npm_token}}
|