diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index e8cccc1c2..2480d31d7 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -35,6 +35,9 @@ jobs: with: node-version: 22.x + - name: Install dependencies + run: npm ci + - name: Configure Git run: | git config --global user.name "github-actions[bot]" diff --git a/package-lock.json b/package-lock.json index 158b96d8c..89ff12393 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "type-graphql", - "version": "2.0.0-rc.3", + "name": "@scope3data/type-graphql", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "type-graphql", - "version": "2.0.0-rc.3", + "name": "@scope3data/type-graphql", + "version": "2.1.0", "funding": [ { "type": "github", diff --git a/scripts/markdown.ts b/scripts/markdown.ts index 2c0b6bb73..e55873020 100644 --- a/scripts/markdown.ts +++ b/scripts/markdown.ts @@ -19,13 +19,13 @@ function escapeRegExp(string: string): string { return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); } -const enum Analyze { +enum Analyze { DOCS = "docs", README = "readme", } -const gitHubUrl = `https://github.com/MichalLytek/type-graphql/tree`; -const gitHubUrlRaw = `https://raw.githubusercontent.com/MichalLytek/type-graphql`; +const gitHubUrl = `https://github.com/scope3data/type-graphql/tree`; +const gitHubUrlRaw = `https://raw.githubusercontent.com/scope3data/type-graphql`; const rootPath = path.resolve(`${__dirname}/..`); const argv = yargs(hideBin(process.argv)) .strict() diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json index e6b246ba9..1f6a80513 100644 --- a/scripts/tsconfig.json +++ b/scripts/tsconfig.json @@ -1,7 +1,10 @@ { "extends": "../tsconfig.json", "compilerOptions": { - "noEmit": true + "noEmit": true, + "types": ["node", "glob", "yargs"], + "esModuleInterop": true, + "skipLibCheck": true }, "include": [".", "../src"] }