@tinacms/cli 0.60.25 → 0.60.28

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.
@@ -10,5 +10,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10
10
  See the License for the specific language governing permissions and
11
11
  limitations under the License.
12
12
  */
13
+ import { Router } from 'express';
13
14
  import { PathConfig } from '../models/media';
14
- export declare const createMediaRouter: (config: PathConfig) => import("express-serve-static-core").Router;
15
+ export declare const createMediaRouter: (config: PathConfig) => Router;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinacms/cli",
3
- "version": "0.60.25",
3
+ "version": "0.60.28",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -40,14 +40,7 @@
40
40
  "@types/prompts": "^2.0.13",
41
41
  "@types/yup": "^0.29.11",
42
42
  "jest": "^27.0.6",
43
- "typescript": "^4.3.5"
44
- },
45
- "scripts": {
46
- "build": "echo \"Run `yarn build` from the root of the repository instead\"",
47
- "test": "jest --passWithNoTests",
48
- "types": "yarn tsc",
49
- "test-watch": "jest --passWithNoTests --watch",
50
- "generate:schema": "yarn node scripts/generateSchema.js"
43
+ "typescript": "4.3.5"
51
44
  },
52
45
  "dependencies": {
53
46
  "@graphql-codegen/core": "^2.1.0",
@@ -58,11 +51,10 @@
58
51
  "@graphql-codegen/visitor-plugin-common": "^2.4.0",
59
52
  "@graphql-tools/graphql-file-loader": "^7.2.0",
60
53
  "@graphql-tools/load": "^7.3.2",
61
- "@tinacms/datalayer": "0.2.0",
62
- "@tinacms/graphql": "0.61.0",
54
+ "@tinacms/datalayer": "0.2.1",
55
+ "@tinacms/graphql": "0.61.3",
63
56
  "@tinacms/metrics": "0.0.3",
64
- "@tinacms/schema-tools": "0.0.6",
65
- "@yarnpkg/esbuild-plugin-pnp": "^2.0.1-rc.3",
57
+ "@tinacms/schema-tools": "0.0.8",
66
58
  "add": "^2.0.6",
67
59
  "ajv": "^6.12.3",
68
60
  "altair-express-middleware": "4.0.6",
@@ -98,5 +90,12 @@
98
90
  "repository": {
99
91
  "url": "https://github.com/tinacms/tinacms.git",
100
92
  "directory": "packages/@tinacms/cli"
93
+ },
94
+ "scripts": {
95
+ "build": "tinacms-scripts build",
96
+ "test": "jest --passWithNoTests",
97
+ "types": "pnpm tsc",
98
+ "test-watch": "jest --passWithNoTests --watch",
99
+ "generate:schema": "yarn node scripts/generateSchema.js"
101
100
  }
102
101
  }