@drieam/appsignal-react
Advanced tools
Comparing version 1.1.0 to 2.0.0
/// <reference types="react" /> | ||
import type { JSClient } from "@appsignal/types"; | ||
export declare type Props = { | ||
export type Props = { | ||
instance: JSClient; | ||
@@ -12,5 +12,5 @@ action?: string; | ||
}; | ||
export declare type State = { | ||
export type State = { | ||
error?: Error; | ||
}; | ||
//# sourceMappingURL=component.d.ts.map |
/// <reference types="react" /> | ||
import type { JSClient } from "@appsignal/types"; | ||
export declare type Props = { | ||
export type Props = { | ||
instance: JSClient; | ||
@@ -12,5 +12,5 @@ action?: string; | ||
}; | ||
export declare type State = { | ||
export type State = { | ||
error?: Error; | ||
}; | ||
//# sourceMappingURL=component.d.ts.map |
{ | ||
"name": "@drieam/appsignal-react", | ||
"version": "1.1.0", | ||
"version": "2.0.0", | ||
"main": "dist/cjs/index.js", | ||
@@ -10,3 +10,3 @@ "module": "dist/esm/index.js", | ||
"scripts": { | ||
"build": "yarn build:cjs && yarn build:esm", | ||
"build": "pnpm build:cjs && pnpm build:esm", | ||
"build:esm": "tsc -p tsconfig.esm.json", | ||
@@ -18,3 +18,3 @@ "build:esm:watch": "tsc -p tsconfig.esm.json -w --preserveWatchOutput", | ||
"clean": "rimraf dist coverage", | ||
"link:yarn": "yarn link", | ||
"link:pnpm": "pnpm link", | ||
"test": "jest --passWithNoTests", | ||
@@ -25,3 +25,4 @@ "test:watch": "jest --watch" | ||
"@appsignal/core": "=1.1.17", | ||
"@appsignal/types": "=3.0.0" | ||
"@appsignal/types": "=3.0.0", | ||
"react": "^16.14.0" | ||
}, | ||
@@ -35,3 +36,6 @@ "peerDependencies": { | ||
}, | ||
"gitHead": "b053d15837b0537df7d143ef1e3722b6a69e55e0" | ||
"gitHead": "bea7a598b677d734be3a9e960c3f10e4183742dc", | ||
"devDependencies": { | ||
"@types/react": "^18.0.26" | ||
} | ||
} |
@@ -11,3 +11,3 @@ # `@appsignal/react` | ||
Add the `@appsignal/react` and `@appsignal/javascript` packages to your `package.json`. Then, run `yarn install`/`npm install`. | ||
Add the `@appsignal/react` and `@appsignal/javascript` packages to your `package.json`. Then, run `pnpm install`/`npm install`. | ||
@@ -17,3 +17,3 @@ You can also add these packages to your `package.json` on the command line: | ||
``` | ||
yarn add @appsignal/javascript @appsignal/react | ||
pnpm add @appsignal/javascript @appsignal/react | ||
npm install --save @appsignal/javascript @appsignal/react | ||
@@ -89,3 +89,3 @@ ``` | ||
```bash | ||
yarn install | ||
pnpm install | ||
lerna bootstrap | ||
@@ -97,3 +97,3 @@ ``` | ||
```bash | ||
yarn build:watch | ||
pnpm build:watch | ||
``` | ||
@@ -104,5 +104,5 @@ | ||
``` | ||
yarn build # build both CJS and ESM | ||
yarn build:cjs # just CJS | ||
yarn build:esm # just ESM | ||
pnpm build # build both CJS and ESM | ||
pnpm build:cjs # just CJS | ||
pnpm build:esm # just ESM | ||
``` | ||
@@ -115,3 +115,3 @@ | ||
```bash | ||
yarn test | ||
pnpm test | ||
``` | ||
@@ -118,0 +118,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29491
4
1
+ Addedreact@^16.14.0
+ Addedobject-assign@4.1.1(transitive)
+ Addedprop-types@15.8.1(transitive)
+ Addedreact@16.14.0(transitive)
+ Addedreact-is@16.13.1(transitive)
- Removedreact@18.1.0(transitive)