@syengup/friday-channel-next 0.1.29 → 0.1.30
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/src/version.js +1 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
package/dist/src/version.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
import { readFileSync } from "node:fs";
|
|
11
11
|
import { fileURLToPath } from "node:url";
|
|
12
12
|
/** Keep in sync with package.json "version" as a last-resort fallback. */
|
|
13
|
-
const FALLBACK_VERSION = "0.1.
|
|
13
|
+
const FALLBACK_VERSION = "0.1.30";
|
|
14
14
|
function resolvePluginVersion() {
|
|
15
15
|
// dist layout: <root>/dist/src/version.js → ../../package.json = <root>/package.json
|
|
16
16
|
// source layout (vitest/jiti): <root>/src/version.ts → ../package.json = <root>/package.json
|
package/package.json
CHANGED
package/src/version.ts
CHANGED
|
@@ -11,7 +11,7 @@ import { readFileSync } from "node:fs";
|
|
|
11
11
|
import { fileURLToPath } from "node:url";
|
|
12
12
|
|
|
13
13
|
/** Keep in sync with package.json "version" as a last-resort fallback. */
|
|
14
|
-
const FALLBACK_VERSION = "0.1.
|
|
14
|
+
const FALLBACK_VERSION = "0.1.30";
|
|
15
15
|
|
|
16
16
|
function resolvePluginVersion(): string {
|
|
17
17
|
// dist layout: <root>/dist/src/version.js → ../../package.json = <root>/package.json
|