Skip to content

Commit e8acfd1

Browse files
committed
build: add auto-changelog npm package
1 parent 050d9b9 commit e8acfd1

File tree

2 files changed

+237
-140
lines changed

2 files changed

+237
-140
lines changed

package.json

Lines changed: 146 additions & 140 deletions
Original file line numberDiff line numberDiff line change
@@ -1,142 +1,148 @@
11
{
2-
"name": "php-awesome-snippets",
3-
"displayName": "PHP Awesome Snippets",
4-
"version": "1.1.3",
5-
"publisher": "hakcorp",
6-
"description": "A fullset of snippets for PHP devs to boost coding productivity.",
7-
"author": {
8-
"name": "JH Ster"
9-
},
10-
"categories": [
11-
"Snippets",
12-
"Programming Languages"
13-
],
14-
"keywords": [
15-
"snippets",
16-
"productivity",
17-
"coding",
18-
"php7",
19-
"psr"
20-
],
21-
"icon": "img/php-awesome-icon.png",
22-
"galleryBanner": {
23-
"color": "#eceff1",
24-
"theme": "light"
25-
},
26-
"engines": {
27-
"vscode": "^1.0.0"
28-
},
29-
"license": "MIT",
30-
"bugs": {
31-
"url": "https://github.com/h4kst3r/php-awesome-snippets/issues"
32-
},
33-
"repository": {
34-
"type": "git",
35-
"url": "https://github.com/h4kst3r/php-awesome-snippets"
36-
},
37-
"homepage": "https://github.com/h4kst3r/php-awesome-snippets",
38-
"contributes": {
39-
"snippets": [
40-
{
41-
"language": "php",
42-
"path": "./snippets/array.json"
43-
},
44-
{
45-
"language": "php",
46-
"path": "./snippets/class.json"
47-
},
48-
{
49-
"language": "php",
50-
"path": "./snippets/control.json"
51-
},
52-
{
53-
"language": "php",
54-
"path": "./snippets/error.json"
55-
},
56-
{
57-
"language": "php",
58-
"path": "./snippets/function.json"
59-
},
60-
{
61-
"language": "php",
62-
"path": "./snippets/function.php5.json"
63-
},
64-
{
65-
"language": "php",
66-
"path": "./snippets/globalvar.json"
67-
},
68-
{
69-
"language": "php",
70-
"path": "./snippets/loop.json"
71-
},
72-
{
73-
"language": "php",
74-
"path": "./snippets/method.json"
75-
},
76-
{
77-
"language": "php",
78-
"path": "./snippets/method.php5.json"
79-
},
80-
{
81-
"language": "php",
82-
"path": "./snippets/statement.json"
83-
},
84-
{
85-
"language": "php",
86-
"path": "./snippets/tag.json"
87-
},
88-
{
89-
"language": "html",
90-
"path": "./snippets/tag.json"
91-
},
92-
{
93-
"language": "plaintext",
94-
"path": "./snippets/array.json"
95-
},
96-
{
97-
"language": "plaintext",
98-
"path": "./snippets/class.json"
99-
},
100-
{
101-
"language": "plaintext",
102-
"path": "./snippets/control.json"
103-
},
104-
{
105-
"language": "plaintext",
106-
"path": "./snippets/error.json"
107-
},
108-
{
109-
"language": "plaintext",
110-
"path": "./snippets/function.json"
111-
},
112-
{
113-
"language": "plaintext",
114-
"path": "./snippets/function.php5.json"
115-
},
116-
{
117-
"language": "plaintext",
118-
"path": "./snippets/globalvar.json"
119-
},
120-
{
121-
"language": "plaintext",
122-
"path": "./snippets/loop.json"
123-
},
124-
{
125-
"language": "plaintext",
126-
"path": "./snippets/method.json"
127-
},
128-
{
129-
"language": "plaintext",
130-
"path": "./snippets/method.php5.json"
131-
},
132-
{
133-
"language": "plaintext",
134-
"path": "./snippets/statement.json"
135-
},
136-
{
137-
"language": "plaintext",
138-
"path": "./snippets/tag.json"
139-
}
140-
]
141-
}
2+
"name": "php-awesome-snippets",
3+
"displayName": "PHP Awesome Snippets",
4+
"version": "1.1.3",
5+
"publisher": "hakcorp",
6+
"description": "A fullset of snippets for PHP devs to boost coding productivity.",
7+
"author": {
8+
"name": "JH Ster"
9+
},
10+
"categories": [
11+
"Snippets",
12+
"Programming Languages"
13+
],
14+
"keywords": [
15+
"snippets",
16+
"productivity",
17+
"coding",
18+
"php7",
19+
"psr"
20+
],
21+
"icon": "img/php-awesome-icon.png",
22+
"galleryBanner": {
23+
"color": "#eceff1",
24+
"theme": "light"
25+
},
26+
"engines": {
27+
"vscode": "^1.0.0"
28+
},
29+
"license": "MIT",
30+
"bugs": {
31+
"url": "https://github.com/h4kst3r/php-awesome-snippets/issues"
32+
},
33+
"repository": {
34+
"type": "git",
35+
"url": "https://github.com/h4kst3r/php-awesome-snippets"
36+
},
37+
"homepage": "https://github.com/h4kst3r/php-awesome-snippets",
38+
"contributes": {
39+
"snippets": [
40+
{
41+
"language": "php",
42+
"path": "./snippets/array.json"
43+
},
44+
{
45+
"language": "php",
46+
"path": "./snippets/class.json"
47+
},
48+
{
49+
"language": "php",
50+
"path": "./snippets/control.json"
51+
},
52+
{
53+
"language": "php",
54+
"path": "./snippets/error.json"
55+
},
56+
{
57+
"language": "php",
58+
"path": "./snippets/function.json"
59+
},
60+
{
61+
"language": "php",
62+
"path": "./snippets/function.php5.json"
63+
},
64+
{
65+
"language": "php",
66+
"path": "./snippets/globalvar.json"
67+
},
68+
{
69+
"language": "php",
70+
"path": "./snippets/loop.json"
71+
},
72+
{
73+
"language": "php",
74+
"path": "./snippets/method.json"
75+
},
76+
{
77+
"language": "php",
78+
"path": "./snippets/method.php5.json"
79+
},
80+
{
81+
"language": "php",
82+
"path": "./snippets/statement.json"
83+
},
84+
{
85+
"language": "php",
86+
"path": "./snippets/tag.json"
87+
},
88+
{
89+
"language": "html",
90+
"path": "./snippets/tag.json"
91+
},
92+
{
93+
"language": "plaintext",
94+
"path": "./snippets/array.json"
95+
},
96+
{
97+
"language": "plaintext",
98+
"path": "./snippets/class.json"
99+
},
100+
{
101+
"language": "plaintext",
102+
"path": "./snippets/control.json"
103+
},
104+
{
105+
"language": "plaintext",
106+
"path": "./snippets/error.json"
107+
},
108+
{
109+
"language": "plaintext",
110+
"path": "./snippets/function.json"
111+
},
112+
{
113+
"language": "plaintext",
114+
"path": "./snippets/function.php5.json"
115+
},
116+
{
117+
"language": "plaintext",
118+
"path": "./snippets/globalvar.json"
119+
},
120+
{
121+
"language": "plaintext",
122+
"path": "./snippets/loop.json"
123+
},
124+
{
125+
"language": "plaintext",
126+
"path": "./snippets/method.json"
127+
},
128+
{
129+
"language": "plaintext",
130+
"path": "./snippets/method.php5.json"
131+
},
132+
{
133+
"language": "plaintext",
134+
"path": "./snippets/statement.json"
135+
},
136+
{
137+
"language": "plaintext",
138+
"path": "./snippets/tag.json"
139+
}
140+
]
141+
},
142+
"devDependencies": {
143+
"auto-changelog": "^2.3.0"
144+
},
145+
"scripts": {
146+
"version": "auto-changelog -p && git add CHANGELOG.md"
147+
}
142148
}

yarn.lock

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2+
# yarn lockfile v1
3+
4+
5+
auto-changelog@^2.3.0:
6+
version "2.3.0"
7+
resolved "https://registry.npmmirror.com/auto-changelog/download/auto-changelog-2.3.0.tgz#08ab8b1840a5d804410f1d1a5d2c4b2df0d835e1"
8+
integrity sha1-CKuLGECl2ARBDx0aXSxLLfDYNeE=
9+
dependencies:
10+
commander "^5.0.0"
11+
handlebars "^4.7.3"
12+
node-fetch "^2.6.0"
13+
parse-github-url "^1.0.2"
14+
semver "^6.3.0"
15+
16+
commander@^5.0.0:
17+
version "5.1.0"
18+
resolved "https://registry.npmmirror.com/commander/download/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"
19+
integrity sha1-Rqu9FlL44Fm92u+Zu9yyrZzxea4=
20+
21+
handlebars@^4.7.3:
22+
version "4.7.7"
23+
resolved "https://registry.npm.taobao.org/handlebars/download/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1"
24+
integrity sha1-nOM0FqrQLb1sj6+oJA1dmABJRaE=
25+
dependencies:
26+
minimist "^1.2.5"
27+
neo-async "^2.6.0"
28+
source-map "^0.6.1"
29+
wordwrap "^1.0.0"
30+
optionalDependencies:
31+
uglify-js "^3.1.4"
32+
33+
minimist@^1.2.5:
34+
version "1.2.5"
35+
resolved "https://registry.npm.taobao.org/minimist/download/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
36+
integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=
37+
38+
neo-async@^2.6.0:
39+
version "2.6.2"
40+
resolved "https://registry.npm.taobao.org/neo-async/download/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f"
41+
integrity sha1-tKr7k+OustgXTKU88WOrfXMIMF8=
42+
43+
node-fetch@^2.6.0:
44+
version "2.6.6"
45+
resolved "https://registry.npmmirror.com/node-fetch/download/node-fetch-2.6.6.tgz#1751a7c01834e8e1697758732e9efb6eeadfaf89"
46+
integrity sha1-F1GnwBg06OFpd1hzLp77burfr4k=
47+
dependencies:
48+
whatwg-url "^5.0.0"
49+
50+
parse-github-url@^1.0.2:
51+
version "1.0.2"
52+
resolved "https://registry.npm.taobao.org/parse-github-url/download/parse-github-url-1.0.2.tgz#242d3b65cbcdda14bb50439e3242acf6971db395"
53+
integrity sha1-JC07ZcvN2hS7UEOeMkKs9pcds5U=
54+
55+
semver@^6.3.0:
56+
version "6.3.0"
57+
resolved "https://registry.npm.taobao.org/semver/download/semver-6.3.0.tgz?cache=0&sync_timestamp=1616463641178&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fsemver%2Fdownload%2Fsemver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
58+
integrity sha1-7gpkyK9ejO6mdoexM3YeG+y9HT0=
59+
60+
source-map@^0.6.1:
61+
version "0.6.1"
62+
resolved "https://registry.nlark.com/source-map/download/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
63+
integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM=
64+
65+
tr46@~0.0.3:
66+
version "0.0.3"
67+
resolved "https://registry.npmmirror.com/tr46/download/tr46-0.0.3.tgz?cache=0&sync_timestamp=1633302307967&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Ftr46%2Fdownload%2Ftr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
68+
integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=
69+
70+
uglify-js@^3.1.4:
71+
version "3.14.5"
72+
resolved "https://registry.npmmirror.com/uglify-js/download/uglify-js-3.14.5.tgz#cdabb7d4954231d80cb4a927654c4655e51f4859"
73+
integrity sha512-qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ==
74+
75+
webidl-conversions@^3.0.0:
76+
version "3.0.1"
77+
resolved "https://registry.nlark.com/webidl-conversions/download/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
78+
integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=
79+
80+
whatwg-url@^5.0.0:
81+
version "5.0.0"
82+
resolved "https://registry.npmmirror.com/whatwg-url/download/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
83+
integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0=
84+
dependencies:
85+
tr46 "~0.0.3"
86+
webidl-conversions "^3.0.0"
87+
88+
wordwrap@^1.0.0:
89+
version "1.0.0"
90+
resolved "https://registry.npm.taobao.org/wordwrap/download/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
91+
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=

0 commit comments

Comments
 (0)