s3db.js 10.0.7 → 10.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/s3db-cli.js CHANGED
File without changes
package/dist/s3db.cjs.js CHANGED
@@ -11779,7 +11779,7 @@ class Database extends EventEmitter {
11779
11779
  this.id = idGenerator(7);
11780
11780
  this.version = "1";
11781
11781
  this.s3dbVersion = (() => {
11782
- const [ok, err, version] = tryFn(() => true ? "10.0.7" : "latest");
11782
+ const [ok, err, version] = tryFn(() => true ? "10.0.8" : "latest");
11783
11783
  return ok ? version : "latest";
11784
11784
  })();
11785
11785
  this.resources = {};
package/dist/s3db.es.js CHANGED
@@ -11775,7 +11775,7 @@ class Database extends EventEmitter {
11775
11775
  this.id = idGenerator(7);
11776
11776
  this.version = "1";
11777
11777
  this.s3dbVersion = (() => {
11778
- const [ok, err, version] = tryFn(() => true ? "10.0.7" : "latest");
11778
+ const [ok, err, version] = tryFn(() => true ? "10.0.8" : "latest");
11779
11779
  return ok ? version : "latest";
11780
11780
  })();
11781
11781
  this.resources = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s3db.js",
3
- "version": "10.0.7",
3
+ "version": "10.0.8",
4
4
  "description": "Use AWS S3, the world's most reliable document storage, as a database with this ORM.",
5
5
  "main": "dist/s3db.cjs.js",
6
6
  "module": "dist/s3db.es.js",
@@ -57,27 +57,6 @@
57
57
  "PLUGINS.md",
58
58
  "UNLICENSE"
59
59
  ],
60
- "scripts": {
61
- "build": "rollup -c",
62
- "build:cli": "rollup -c rollup.cli.config.mjs",
63
- "build:binaries": "./scripts/scripts/build-binaries.sh",
64
- "dev": "rollup -c -w",
65
- "test": "pnpm run test:js && pnpm run test:ts",
66
- "test:js": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=10000",
67
- "test:ts": "tsc --noEmit --project tests/typescript/tsconfig.json",
68
- "test:coverage": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --coverage --runInBand",
69
- "test:quick": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testTimeout=10000",
70
- "test:plugins": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js tests/plugins/ --runInBand --testTimeout=60000",
71
- "test:full": "pnpm run test:js && pnpm run test:ts",
72
- "benchmark": "node benchmark-compression.js",
73
- "prepare": "pnpm run build",
74
- "version": "echo 'Use pnpm run release v<version> instead of npm version'",
75
- "prepack": "pnpm run build",
76
- "release:check": "./scripts/pre-release-check.sh",
77
- "release:prepare": "pnpm run build:binaries && echo 'Binaries ready for GitHub release'",
78
- "release": "./scripts/release.sh",
79
- "validate:types": "pnpm run test:ts && echo 'TypeScript definitions are valid!'"
80
- },
81
60
  "dependencies": {
82
61
  "@aws-sdk/client-s3": "^3.906.0",
83
62
  "@modelcontextprotocol/sdk": "^1.19.1",
@@ -145,5 +124,24 @@
145
124
  },
146
125
  "funding": [
147
126
  "https://github.com/sponsors/forattini-dev"
148
- ]
149
- }
127
+ ],
128
+ "scripts": {
129
+ "build": "rollup -c",
130
+ "build:cli": "rollup -c rollup.cli.config.mjs",
131
+ "build:binaries": "./scripts/scripts/build-binaries.sh",
132
+ "dev": "rollup -c -w",
133
+ "test": "pnpm run test:js && pnpm run test:ts",
134
+ "test:js": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --testTimeout=10000",
135
+ "test:ts": "tsc --noEmit --project tests/typescript/tsconfig.json",
136
+ "test:coverage": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles --coverage --runInBand",
137
+ "test:quick": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js --runInBand --testTimeout=10000",
138
+ "test:plugins": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js tests/plugins/ --runInBand --testTimeout=60000",
139
+ "test:full": "pnpm run test:js && pnpm run test:ts",
140
+ "benchmark": "node benchmark-compression.js",
141
+ "version": "echo 'Use pnpm run release v<version> instead of npm version'",
142
+ "release:check": "./scripts/pre-release-check.sh",
143
+ "release:prepare": "pnpm run build:binaries && echo 'Binaries ready for GitHub release'",
144
+ "release": "./scripts/release.sh",
145
+ "validate:types": "pnpm run test:ts && echo 'TypeScript definitions are valid!'"
146
+ }
147
+ }