Skip to content

Commit 468d8fc

Browse files
authored
chore: fix deps that are too specific (#2094)
Drive-by fix: delete folder specific lint config
1 parent 9eed46a commit 468d8fc

5 files changed

Lines changed: 3 additions & 21 deletions

File tree

appengine/hello-world/flexible/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/GoogleCloudPlatform/nodejs-docs-samples.git"
1111
},
1212
"engines": {
13-
"node": "12.20.0"
13+
"node": ">= 12.20.0"
1414
},
1515
"scripts": {
1616
"start": "node app.js",

appengine/storage/flexible/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"test": "mocha system-test/*.test.js --exit --timeout=30000"
77
},
88
"engines": {
9-
"node": "12.20.0"
9+
"node": ">= 12.20.0"
1010
},
1111
"dependencies": {
1212
"@google-cloud/storage": "^5.3.0",

appengine/websockets/README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,30 +20,18 @@ Before you can run or deploy the sample, you need to do the following:
2020

2121
npm install
2222

23-
or with `yarn`:
24-
25-
yarn install
26-
2723
## Running locally
2824

2925
With `npm`:
3026

3127
npm start
3228

33-
or with `yarn`:
34-
35-
yarn start
36-
3729
## Deploying to App Engine
3830

3931
With `npm`:
4032

4133
npm run deploy
4234

43-
or with `yarn`:
44-
45-
yarn run deploy
46-
4735
## Running the tests
4836

4937
See [Contributing][contributing].

appengine/websockets/package.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
"scripts": {
1212
"deploy": "gcloud app deploy",
1313
"start": "node app.js",
14-
"lint": "eslint .",
15-
"fix": "eslint --fix .",
1614
"test": "mocha --exit test/*.test.js",
1715
"e2e-test": "samples test deploy"
1816
},
@@ -23,10 +21,6 @@
2321
"supertest": "^6.0.0"
2422
},
2523
"devDependencies": {
26-
"eslint": "^7.0.0",
27-
"eslint-config-prettier": "^6.0.0",
28-
"eslint-plugin-node": "^11.0.0",
29-
"eslint-plugin-prettier": "^3.0.0",
3024
"mocha": "^8.0.0",
3125
"puppeteer": "^5.0.0"
3226
}

eventarc/pubsub/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"system-test": "test/runner.sh mocha test/system.test.js --timeout=10000"
2020
},
2121
"dependencies": {
22-
"@google/events": "3.2.1",
22+
"@google/events": "^3.2.1",
2323
"express": "^4.16.4"
2424
},
2525
"devDependencies": {

0 commit comments

Comments
 (0)