screw-up 1.16.0 → 1.17.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/dist/analyzer.d.ts +2 -2
- package/dist/cli-internal.d.ts +2 -2
- package/dist/cli.d.ts +2 -2
- package/dist/fast-tags.d.ts +2 -2
- package/dist/generated/packageMetadata.d.ts +4 -4
- package/dist/git-operations.d.ts +2 -2
- package/dist/index.cjs +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +3 -3
- package/dist/internal.d.ts +2 -2
- package/dist/main.cjs +4 -4
- package/dist/main.d.ts +2 -2
- package/dist/main.js +4 -4
- package/dist/{packageMetadata-C4pBU1Hu.cjs → packageMetadata-DdvLnmBC.cjs} +6 -6
- package/dist/{packageMetadata-C4pBU1Hu.cjs.map → packageMetadata-DdvLnmBC.cjs.map} +1 -1
- package/dist/{packageMetadata-CYZtTJqC.js → packageMetadata-DgMEVI8P.js} +6 -6
- package/dist/{packageMetadata-CYZtTJqC.js.map → packageMetadata-DgMEVI8P.js.map} +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/vite-plugin.d.ts +2 -2
- package/package.json +7 -7
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* name: screw-up
|
|
3
|
-
* version: 1.
|
|
3
|
+
* version: 1.17.0
|
|
4
4
|
* description: Simply package metadata inserter on Vite plugin
|
|
5
5
|
* author: Kouji Matsui (@kekyo@mi.kekyo.net)
|
|
6
6
|
* license: MIT
|
|
7
7
|
* repository.url: https://github.com/kekyo/screw-up.git
|
|
8
|
-
* git.commit.hash:
|
|
8
|
+
* git.commit.hash: 05a9f2e0dec5249126f020eee1d57f6ff8767096
|
|
9
9
|
*/
|
|
10
10
|
import { existsSync } from "fs";
|
|
11
11
|
import * as fs from "fs/promises";
|
|
@@ -2147,7 +2147,7 @@ const getGitMetadata = async (repositoryPath, checkWorkingDirectoryStatus, logge
|
|
|
2147
2147
|
gitMetadata.commit = {
|
|
2148
2148
|
hash: currentCommit.hash,
|
|
2149
2149
|
shortHash: currentCommit.shortHash,
|
|
2150
|
-
date: dayjs(currentCommit.date).format("YYYY-MM-DDTHH:mm:ssZ
|
|
2150
|
+
date: dayjs(currentCommit.date).format("YYYY-MM-DDTHH:mm:ssZ"),
|
|
2151
2151
|
message: currentCommit.message
|
|
2152
2152
|
};
|
|
2153
2153
|
const relatedTags = getRelatedTagsFromMap(commitToTags, currentCommit.hash);
|
|
@@ -2177,11 +2177,11 @@ const getFetchGitMetadata = (targetDir, checkWorkingDirectoryStatus, logger) =>
|
|
|
2177
2177
|
};
|
|
2178
2178
|
};
|
|
2179
2179
|
const name = "screw-up";
|
|
2180
|
-
const version = "1.
|
|
2180
|
+
const version = "1.17.0";
|
|
2181
2181
|
const author = "Kouji Matsui (@kekyo@mi.kekyo.net)";
|
|
2182
2182
|
const license = "MIT";
|
|
2183
2183
|
const repository_url = "https://github.com/kekyo/screw-up.git";
|
|
2184
|
-
const git_commit_hash = "
|
|
2184
|
+
const git_commit_hash = "05a9f2e0dec5249126f020eee1d57f6ff8767096";
|
|
2185
2185
|
const packageMetadata = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
2186
2186
|
__proto__: null,
|
|
2187
2187
|
author,
|
|
@@ -2204,4 +2204,4 @@ export {
|
|
|
2204
2204
|
resolvePackageMetadata as r,
|
|
2205
2205
|
version as v
|
|
2206
2206
|
};
|
|
2207
|
-
//# sourceMappingURL=packageMetadata-
|
|
2207
|
+
//# sourceMappingURL=packageMetadata-DgMEVI8P.js.map
|