@dbos-inc/dbos-sdk 1.2.6-preview → 1.2.8-preview

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dbos-inc/dbos-sdk",
3
- "version": "1.2.6-preview",
3
+ "version": "1.2.8-preview",
4
4
  "description": "A Typescript framework built on the database",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -16,8 +16,8 @@
16
16
  "scripts": {
17
17
  "build": "npm run --workspaces build && tsc --project tsconfig.build.json",
18
18
  "build-fdb": "npm run --workspaces build && tsc --project tsconfig.build-fdb.json",
19
- "lint": "eslint --fix --ext .ts --ignore-pattern foundationdb/ .",
20
- "lint-fdb": "eslint --fix --ext .ts .",
19
+ "lint": "eslint --fix --ext .ts --ignore-pattern foundationdb/ --ignore-pattern templates/ .",
20
+ "lint-fdb": "eslint --fix --ext .ts --ignore-pattern templates/ .",
21
21
  "setversion": "npm run --workspaces setversion && grunt setversion",
22
22
  "test": "npm run --workspaces test && npx prisma generate --schema tests/prisma/schema.prisma && npm run build && jest --coverage --collectCoverageFrom='src/**/*' --collectCoverageFrom='!src/foundationdb/**/*' --detectOpenHandles --testPathIgnorePatterns=examples/* --testPathIgnorePatterns=packages/* --testPathIgnorePatterns=tests/foundationdb/*",
23
23
  "test-fdb": "npm run --workspaces test && npx prisma generate --schema tests/prisma/schema.prisma && npm run build-fdb && jest --runInBand --coverage"