]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
chore: unused stuff 2415/head
authorEduardo San Martin Morote <posva13@gmail.com>
Thu, 18 Sep 2025 15:27:08 +0000 (17:27 +0200)
committerEduardo San Martin Morote <posva13@gmail.com>
Thu, 18 Sep 2025 15:27:08 +0000 (17:27 +0200)
.github/workflows/pkg.pr.new.yml
.github/workflows/test.yml
packages/router/api-extractor.json [deleted file]

index 47abd602694389b32b68a5747791b72bcb557f54..a011f9b92a215b353a21b1fd795ad71b35af2a34 100644 (file)
@@ -4,17 +4,17 @@ on:
   pull_request:
     branches: main
     paths-ignore:
-    - 'packages/docs/**'
-    - 'packages/playground/**'
+      - 'packages/docs/**'
+      - 'packages/playground/**'
 
   push:
     branches:
-    - '**'
+      - '**'
     tags:
-    - '!**'
+      - '!**'
     paths-ignore:
-    - 'packages/docs/**'
-    - 'packages/playground/**'
+      - 'packages/docs/**'
+      - 'packages/playground/**'
 
 jobs:
   build:
@@ -22,24 +22,21 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
-    - name: Checkout code
-      uses: actions/checkout@v4
-      with:
-        fetch-depth: 0
-    - uses: pnpm/action-setup@v4
-    - uses: actions/setup-node@v4
-      with:
-        node-version: lts/*
-        cache: pnpm
-
-    - name: Install
-      run: pnpm install --frozen-lockfile
-
-    - name: Build
-      run: pnpm -C packages/router build
-
-    - name: Build DTS
-      run: pnpm -C packages/router build:dts
-
-    - name: Release
-      run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/*'
+      - name: Checkout code
+        uses: actions/checkout@v4
+        with:
+          fetch-depth: 0
+      - uses: pnpm/action-setup@v4
+      - uses: actions/setup-node@v4
+        with:
+          node-version: lts/*
+          cache: pnpm
+
+      - name: Install
+        run: pnpm install --frozen-lockfile
+
+      - name: Build
+        run: pnpm -C packages/router build
+
+      - name: Release
+        run: pnpm dlx pkg-pr-new publish --compact --pnpm './packages/*'
index 120730af1f1ce49a86717d402903736f5627a110..71b2f20a5853272f006dd1e3a70636643d82a357 100644 (file)
@@ -36,7 +36,6 @@ jobs:
       - run: pnpm install
       - run: pnpm run lint
       - run: pnpm run -r build
-      - run: pnpm run -r build:dts
       - run: pnpm run -r test:types
       - run: pnpm run -r test:unit
 
diff --git a/packages/router/api-extractor.json b/packages/router/api-extractor.json
deleted file mode 100644 (file)
index ca11cda..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-// this the shared base config for all packages.
-{
-  "$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
-
-  "mainEntryPointFilePath": "./dist/src/index.d.ts",
-
-  "apiReport": {
-    "enabled": true,
-    "reportFolder": "<projectFolder>/temp/"
-  },
-
-  "docModel": {
-    "enabled": true
-  },
-
-  "dtsRollup": {
-    "enabled": true,
-    "untrimmedFilePath": "./dist/<unscopedPackageName>.d.ts"
-  },
-
-  "tsdocMetadata": {
-    "enabled": false
-  },
-
-  "messages": {
-    "compilerMessageReporting": {
-      "default": {
-        "logLevel": "warning"
-      }
-    },
-
-    "extractorMessageReporting": {
-      "default": {
-        "logLevel": "warning",
-        "addToApiReportFile": true
-      },
-
-      "ae-missing-release-tag": {
-        "logLevel": "none"
-      }
-    },
-
-    "tsdocMessageReporting": {
-      "default": {
-        "logLevel": "warning"
-      }
-    }
-  }
-}