Skip to content

Commit 2c09918

Browse files
committed
Bump version and add cross-env back to test scripts
1 parent efe77af commit 2c09918

2 files changed

Lines changed: 28 additions & 14 deletions

File tree

package-lock.json

Lines changed: 21 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-cf-planetscale-app",
3-
"version": "1.0.6",
3+
"version": "1.0.7",
44
"description": "Create a Cloudflare workers app for building production ready RESTful APIs using Hono",
55
"main": "dist/index.mjs",
66
"engines": {
@@ -39,11 +39,11 @@
3939
"scripts": {
4040
"build": "node ./build.js",
4141
"dev": "miniflare --live-reload --debug --env .env --modules dist/index.mjs",
42-
"tests": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles --runInBand",
43-
"tests:coverage": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles --runInBand --coverage",
44-
"tests:summary": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles --runInBand --coverage --coverageReporters=\"text-summary\"",
45-
"tests:unit": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles ./tests/unit",
46-
"tests:integration": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles ./tests/integration",
42+
"tests": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles --runInBand",
43+
"tests:coverage": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles --runInBand --coverage",
44+
"tests:summary": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles --runInBand --coverage --coverageReporters=\"text-summary\"",
45+
"tests:unit": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles ./tests/unit",
46+
"tests:integration": "npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest -i --colors --verbose --detectOpenHandles ./tests/integration",
4747
"migrate:dev:latest": "node --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/migrate.ts dev latest",
4848
"migrate:dev:down": "node --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/migrate.ts dev down",
4949
"migrate:dev:none": "node --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/migrate.ts dev none",
@@ -72,6 +72,7 @@
7272
"@typescript-eslint/parser": "^5.45.0",
7373
"aws-sdk-client-mock": "^2.0.0",
7474
"aws-sdk-client-mock-jest": "^2.0.0",
75+
"cross-env": "^7.0.3",
7576
"dotenv": "^16.0.3",
7677
"esbuild": "^0.15.11",
7778
"esbuild-jest": "^0.5.0",
@@ -99,7 +100,6 @@
99100
"@planetscale/database": "^1.4.0",
100101
"@tsndr/cloudflare-worker-jwt": "2.1.2",
101102
"bcryptjs": "^2.4.3",
102-
"cross-env": "^7.0.3",
103103
"dayjs": "^1.11.6",
104104
"hono": "^2.2.5",
105105
"http-status": "^1.5.3",

0 commit comments

Comments
 (0)