Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,9 @@ jobs:

- name: Create Release Pull Request or Publish to NPM
id: changesets
uses: changesets/action@v1.9.0
uses: changesets/action@v2.0.0-next.4
with:
publish: pnpm release
commit: 'chore(release): update packages versions'
title: 'Upcoming Release Changes'
publish-script: pnpm release
env:
GITHUB_TOKEN: ${{ env.github-token }}

Expand Down
4 changes: 4 additions & 0 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
"inputs": ["production", "^production"],
"cache": true
},
"test": {
"dependsOn": ["^build"],
"cache": true
},
"@nx/eslint:lint": {
"inputs": [
"default",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"tslib": "2.8.1"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@changesets/cli": "3.0.0-next.9",
"@eddeee888/eslint-plugin": "1.0.0",
"@eddeee888/nx-graphql-code-generator": "2.1.0",
"@eslint/eslintrc": "3.3.1",
Expand Down
1 change: 1 addition & 0 deletions packages/operation-location-migration-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"tags": [],
"implicitDependencies": ["operation-location-migration"],
"targets": {
"build": { "command": "echo noop" },
"e2e": {
"executor": "nx:run-commands",
"options": {
Expand Down
3 changes: 0 additions & 3 deletions packages/operation-location-migration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
"ts-morph": "^22.0.0",
"tslib": "^2.3.0"
},
"publishConfig": {
"directory": "packages/operation-location-migration"
},
"files": [
"dist",
"!**/*.tsbuildinfo"
Expand Down
3 changes: 0 additions & 3 deletions packages/server-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,6 @@
"@graphql-codegen/typescript-resolvers": "^6.1.0",
"tslib": "^2.8.0"
},
"publishConfig": {
"directory": "packages/server-config"
},
"files": [
"dist",
"!**/*.tsbuildinfo"
Expand Down
1 change: 1 addition & 0 deletions packages/typescript-resolver-files-e2e/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"tags": [],
"implicitDependencies": ["typescript-resolver-files"],
"targets": {
"build": { "command": "echo noop" },
"e2e": {
"executor": "nx:run-commands",
"options": {
Expand Down
5 changes: 1 addition & 4 deletions packages/typescript-resolver-files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"graphql": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"dependencies": {
"@eddeee888/gcg-server-config": "0.5.0",
"@eddeee888/gcg-server-config": "workspace:*",
"@graphql-codegen/add": "^7.1.0",
"@graphql-codegen/plugin-helpers": "^7.1.0",
"@graphql-codegen/schema-ast": "^6.1.0",
Expand All @@ -51,8 +51,5 @@
"micromatch": "^4.0.0",
"ts-morph": "^22.0.0",
"tslib": "^2.8.0"
},
"publishConfig": {
"directory": "packages/typescript-resolver-files"
}
}
4 changes: 2 additions & 2 deletions packages/typescript-resolver-files/src/defineConfig.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { defineConfig } from './defineConfig';
import { preset as defaultPreset } from './preset';
import { defineConfig } from './defineConfig.js';
import { preset as defaultPreset } from './preset.js';

describe('defineConfig()', () => {
it('returns default values correctly', () => {
Expand Down
Loading