Skip to content

Commit

Permalink
Version Packages (#47)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Sep 20, 2022
1 parent 69b874e commit 3c7f84b
Show file tree
Hide file tree
Showing 10 changed files with 143 additions and 54 deletions.
38 changes: 0 additions & 38 deletions .changeset/large-coins-explain.md

This file was deleted.

42 changes: 42 additions & 0 deletions packages/eslint-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,47 @@
# @ts-safeql/eslint-plugin

## 0.0.11

### Patch Changes

- 69b874e: you can now override the default types (e.g. timestamp -> DateTime) by adding an `overrides` property to the config:

```ts
// safeql.config.ts
import { definedConfig } from "@ts-safeql/eslint-plugin";

export default definedConfig({
// ...
overrides: {
types: {
timestamp: "DateTime",
},
},
});
```

or

```json
// .eslintrc.json
{
// ...
"connections": {
// ...,
"overrides": {
"types": {
"timestamp": "DateTime"
}
}
}
}
```

- Updated dependencies [69b874e]
- @ts-safeql/generate@0.0.3
- @ts-safeql/shared@0.0.3
- @ts-safeql/test-utils@0.0.3

## 0.0.10

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/eslint-plugin",
"version": "0.0.10",
"version": "0.0.11",
"main": "lib/index.js",
"license": "MIT",
"repository": "https://github.com/ts-safeql/safeql/tree/master/packages/eslint-plugin",
Expand Down Expand Up @@ -31,9 +31,9 @@
"typescript": "^4.8.2"
},
"dependencies": {
"@ts-safeql/generate": "workspace:0.0.2",
"@ts-safeql/shared": "workspace:0.0.2",
"@ts-safeql/test-utils": "workspace:0.0.2",
"@ts-safeql/generate": "workspace:0.0.3",
"@ts-safeql/shared": "workspace:0.0.3",
"@ts-safeql/test-utils": "workspace:0.0.3",
"@typescript-eslint/utils": "^5.36.2",
"fp-ts": "^2.12.3",
"pg-connection-string": "2.5.0",
Expand Down
41 changes: 41 additions & 0 deletions packages/generate/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,46 @@
# @ts-safeql/generate

## 0.0.3

### Patch Changes

- 69b874e: you can now override the default types (e.g. timestamp -> DateTime) by adding an `overrides` property to the config:

```ts
// safeql.config.ts
import { definedConfig } from "@ts-safeql/eslint-plugin";

export default definedConfig({
// ...
overrides: {
types: {
timestamp: "DateTime",
},
},
});
```

or

```json
// .eslintrc.json
{
// ...
"connections": {
// ...,
"overrides": {
"types": {
"timestamp": "DateTime"
}
}
}
}
```

- Updated dependencies [69b874e]
- @ts-safeql/shared@0.0.3
- @ts-safeql/test-utils@0.0.3

## 0.0.2

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/generate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/generate",
"version": "0.0.2",
"version": "0.0.3",
"description": "",
"main": "lib/index.js",
"license": "MIT",
Expand Down Expand Up @@ -31,8 +31,8 @@
"typescript": "^4.8.2"
},
"dependencies": {
"@ts-safeql/shared": "workspace:0.0.2",
"@ts-safeql/test-utils": "workspace:0.0.2",
"@ts-safeql/shared": "workspace:0.0.3",
"@ts-safeql/test-utils": "workspace:0.0.3",
"fp-ts": "^2.12.3",
"pg-connection-string": "^2.5.0",
"postgres": "github:porsager/postgres",
Expand Down
37 changes: 37 additions & 0 deletions packages/shared/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,42 @@
# @ts-safeql/shared

## 0.0.3

### Patch Changes

- 69b874e: you can now override the default types (e.g. timestamp -> DateTime) by adding an `overrides` property to the config:

```ts
// safeql.config.ts
import { definedConfig } from "@ts-safeql/eslint-plugin";

export default definedConfig({
// ...
overrides: {
types: {
timestamp: "DateTime",
},
},
});
```

or

```json
// .eslintrc.json
{
// ...
"connections": {
// ...,
"overrides": {
"types": {
"timestamp": "DateTime"
}
}
}
}
```

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/shared",
"version": "0.0.2",
"version": "0.0.3",
"main": "lib/index.js",
"types": "src/index.ts",
"license": "MIT",
Expand Down
7 changes: 7 additions & 0 deletions packages/test-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @ts-safeql/test-utils

## 0.0.3

### Patch Changes

- Updated dependencies [69b874e]
- @ts-safeql/shared@0.0.3

## 0.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ts-safeql/test-utils",
"version": "0.0.2",
"version": "0.0.3",
"main": "lib/index.js",
"types": "src/index.ts",
"license": "MIT",
Expand All @@ -25,7 +25,7 @@
"typescript": "^4.8.2"
},
"dependencies": {
"@ts-safeql/shared": "workspace:0.0.2",
"@ts-safeql/shared": "workspace:0.0.3",
"nanoid": "^4.0.0",
"pg-connection-string": "^2.5.0",
"postgres": "github:porsager/postgres"
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3c7f84b

Please sign in to comment.