@typed-assistant/builder 0.0.74 → 0.0.75

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/CHANGELOG.md CHANGED
@@ -1,13 +1,7 @@
1
1
  # @typed-assistant/builder
2
2
 
3
- ## 0.0.2
3
+ ## 0.0.75
4
4
 
5
5
  ### Patch Changes
6
6
 
7
- - Update READMEs.
8
-
9
- ## 0.0.1
10
-
11
- ### Patch Changes
12
-
13
- - First version.
7
+ - Prevent git pull from throwing.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typed-assistant/builder",
3
- "version": "0.0.74",
3
+ "version": "0.0.75",
4
4
  "exports": {
5
5
  "./appProcess": "./src/appProcess.tsx",
6
6
  "./bunInstall": "./src/bunInstall.tsx",
@@ -23,11 +23,11 @@
23
23
  "eslint-plugin-html": "^7.1.0",
24
24
  "eslint": "^8.56.0",
25
25
  "ts-toolbelt": "^9.6.0",
26
- "typescript": "^5.3.3",
27
- "@typed-assistant/eslint-config": "0.0.10",
26
+ "typescript": "^5.4.0",
28
27
  "@typed-assistant/logger": "0.0.21",
28
+ "@typed-assistant/typescript-config": "0.0.10",
29
29
  "@typed-assistant/utils": "0.0.18",
30
- "@typed-assistant/typescript-config": "0.0.10"
30
+ "@typed-assistant/eslint-config": "0.0.10"
31
31
  },
32
32
  "peerDependencies": {},
33
33
  "publishConfig": {
@@ -8,7 +8,7 @@ export const pullChanges = async ({
8
8
  onChangesPulled: () => void
9
9
  }) => {
10
10
  logger.debug({ emoji: "⬇️" }, "Pulling changes...")
11
- const { exitCode, stderr, stdout } = await $`git pull`.quiet()
11
+ const { exitCode, stderr, stdout } = await $`git pull`.nothrow().quiet()
12
12
  if (exitCode) {
13
13
  logger.error(
14
14
  { additionalDetails: stderr.toString().trim(), emoji: "⬇️🚨" },