You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
That ensures neither is accidentally installed from PyPI.
96
96
97
-
Linting and running unit tests is done via [pre-commit](https://pre-commit.com/), and so is performed automatically on commit after being installed (`pre-commit install`). The continuous integration also runs these checks. Manual options are available so you don't have to commit:
97
+
Linting and running unit tests is done via [pre-commit](https://pre-commit.com/), and so is performed automatically on commit after being installed (`pre-commit install`).
98
98
99
99
```shell
100
100
# run all hooks on all files, mirrors what the CI runs
"description": "The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.",
5
-
"main": "dist/index.js",
6
-
"directories": {
7
-
"test": "tests"
8
-
},
9
-
"files": [
10
-
"dist"
11
-
],
12
-
"scripts": {
13
-
"build": "npx tsc",
14
-
"prepack": "npm run build",
15
-
"test": "npx jest",
16
-
"test:debug": "npx --node-arg=--inspect jest --runInBand",
"description": "The CloudFormation Resource Provider Development Kit (RPDK) allows you to author your own resource providers that can be used by CloudFormation. This plugin library helps to provide runtime bindings for the execution of your providers by CloudFormation.",
5
+
"main": "dist/index.js",
6
+
"directories": {
7
+
"test": "tests"
8
+
},
9
+
"files": [
10
+
"dist"
11
+
],
12
+
"scripts": {
13
+
"build": "npx tsc",
14
+
"prepack": "npm run build",
15
+
"test": "npx jest",
16
+
"test:debug": "npx --node-arg=--inspect jest --runInBand",
0 commit comments