Skip to content

Commit dc39dd8

Browse files
committed
build: change version to 1.6.<release-version>.<patch-version>
no `version_name` in manifest.json anymore
1 parent 3778360 commit dc39dd8

File tree

3 files changed

+40
-11
lines changed

3 files changed

+40
-11
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"crx": "^5.0.1",
8181
"eslint": "^7.32.0",
8282
"eslint-plugin-vue": "^9.0.0",
83-
"git-commit-id": "^2.0.1",
83+
"git-rev-sync": "^3.0.2",
8484
"sass": "^1.54.8",
8585
"sass-loader": "~7.3.1",
8686
"stylus": "^0.54.5",

webpack/prod-background.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ const merge = require("webpack-merge");
22
const common = require("./common.js");
33
const path = require("path");
44
const CopyWebpackPlugin = require("copy-webpack-plugin");
5-
const gitCommitId = require('git-commit-id');
5+
const git = require('git-rev-sync');
66

77
// 用于替换 @ 符号的路径
88
function resolve(dir) {
@@ -32,7 +32,11 @@ module.exports = merge(common, {
3232
to: path.join(resolve('dist'), "manifest.json"),
3333
transform (content, path) {
3434
var manifest = JSON.parse(content.toString());
35-
manifest.version_name = `${manifest.version}.${gitCommitId().slice(0, 7)}`; // ex: '01ef00a'
35+
36+
// rewrite version to add Build number (simple from git count)
37+
const build_number = git.count() % 65535;
38+
manifest.version = `${manifest.version}.${build_number}`;
39+
3640
return JSON.stringify(manifest);
3741
}
3842
}

yarn.lock

+33-8
Original file line numberDiff line numberDiff line change
@@ -4112,7 +4112,7 @@ escape-html@~1.0.3:
41124112
resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
41134113
integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==
41144114

4115-
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
4115+
escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
41164116
version "1.0.5"
41174117
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
41184118
integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
@@ -4896,10 +4896,14 @@ getpass@^0.1.1:
48964896
dependencies:
48974897
assert-plus "^1.0.0"
48984898

4899-
git-commit-id@^2.0.1:
4900-
version "2.0.1"
4901-
resolved "https://registry.yarnpkg.com/git-commit-id/-/git-commit-id-2.0.1.tgz#fe6cf5caa34579a33da8f6ba53552248b93b2bef"
4902-
integrity sha512-ltEuT5LdiSLK0dc0S8cOWF97mmsQO81KrajzPpNZmCnynXyn6AJklJNVOpNKwcG6Lq2Vp/d/y7DDTkrRFDW9YQ==
4899+
git-rev-sync@^3.0.2:
4900+
version "3.0.2"
4901+
resolved "https://registry.yarnpkg.com/git-rev-sync/-/git-rev-sync-3.0.2.tgz#9763c730981187c3419b75dd270088cc5f0e161b"
4902+
integrity sha512-Nd5RiYpyncjLv0j6IONy0lGzAqdRXUaBctuGBbrEA2m6Bn4iDrN/9MeQTXuiquw8AEKL9D2BW0nw5m/lQvxqnQ==
4903+
dependencies:
4904+
escape-string-regexp "1.0.5"
4905+
graceful-fs "4.1.15"
4906+
shelljs "0.8.5"
49034907

49044908
glob-parent@^3.1.0:
49054909
version "3.1.0"
@@ -4926,7 +4930,7 @@ glob-to-regexp@^0.4.1:
49264930
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e"
49274931
integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==
49284932

4929-
glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
4933+
glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6:
49304934
version "7.2.3"
49314935
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
49324936
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -5035,6 +5039,11 @@ globby@^9.2.0:
50355039
pify "^4.0.1"
50365040
slash "^2.0.0"
50375041

5042+
5043+
version "4.1.15"
5044+
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
5045+
integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==
5046+
50385047
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0, graceful-fs@^4.2.2, graceful-fs@^4.2.4, graceful-fs@^4.2.9:
50395048
version "4.2.10"
50405049
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c"
@@ -5522,7 +5531,7 @@ internal-slot@^1.0.3:
55225531
has "^1.0.3"
55235532
side-channel "^1.0.4"
55245533

5525-
interpret@^1.4.0:
5534+
interpret@^1.0.0, interpret@^1.4.0:
55265535
version "1.4.0"
55275536
resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
55285537
integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==
@@ -8045,6 +8054,13 @@ readdirp@~3.6.0:
80458054
dependencies:
80468055
picomatch "^2.2.1"
80478056

8057+
rechoir@^0.6.2:
8058+
version "0.6.2"
8059+
resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
8060+
integrity sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==
8061+
dependencies:
8062+
resolve "^1.1.6"
8063+
80488064
regenerate-unicode-properties@^10.1.0:
80498065
version "10.1.0"
80508066
resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz#7c3192cab6dd24e21cb4461e5ddd7dd24fa8374c"
@@ -8250,7 +8266,7 @@ resolve-url@^0.2.1:
82508266
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
82518267
integrity sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==
82528268

8253-
resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.3.2, resolve@^1.4.0:
8269+
resolve@^1.1.6, resolve@^1.10.0, resolve@^1.12.0, resolve@^1.14.2, resolve@^1.3.2, resolve@^1.4.0:
82548270
version "1.22.1"
82558271
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
82568272
integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
@@ -8598,6 +8614,15 @@ shell-quote@^1.7.3:
85988614
resolved "https://registry.yarnpkg.com/shell-quote/-/shell-quote-1.7.4.tgz#33fe15dee71ab2a81fcbd3a52106c5cfb9fb75d8"
85998615
integrity sha512-8o/QEhSSRb1a5i7TFR0iM4G16Z0vYB2OQVs4G3aAFXjn3T6yEx8AZxy1PgDF7I00LZHYA3WxaSYIf5e5sAX8Rw==
86008616

8617+
8618+
version "0.8.5"
8619+
resolved "https://registry.yarnpkg.com/shelljs/-/shelljs-0.8.5.tgz#de055408d8361bed66c669d2f000538ced8ee20c"
8620+
integrity sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==
8621+
dependencies:
8622+
glob "^7.0.0"
8623+
interpret "^1.0.0"
8624+
rechoir "^0.6.2"
8625+
86018626
side-channel@^1.0.4:
86028627
version "1.0.4"
86038628
resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"

0 commit comments

Comments
 (0)