@sentry/craft 2.6.0 → 2.7.1
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.
- package/README.md +0 -42
- package/dist/craft +146 -144
- package/dist/craft.map +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -61,11 +61,6 @@ then enforces a specific workflow for managing release branches, changelogs, art
|
|
|
61
61
|
- [Integrating Your Project with `craft`](#integrating-your-project-with-craft)
|
|
62
62
|
- [Pre-release (Version-bumping) Script: Conventions](#pre-release-version-bumping-script-conventions)
|
|
63
63
|
- [Post-release Script: Conventions](#post-release-script-conventions)
|
|
64
|
-
- [Development](#development)
|
|
65
|
-
- [Logging Level](#logging-level)
|
|
66
|
-
- [Dry-run Mode](#dry-run-mode)
|
|
67
|
-
- [Sentry Support](#sentry-support)
|
|
68
|
-
- [Releasing](#releasing)
|
|
69
64
|
|
|
70
65
|
## Installation
|
|
71
66
|
|
|
@@ -1426,40 +1421,3 @@ git checkout master
|
|
|
1426
1421
|
# Only commit if there are changes, make sure to `pull --rebase` before pushing to avoid conflicts
|
|
1427
1422
|
git diff --quiet || git commit -anm 'meta: Bump new development version' && git pull --rebase && git push
|
|
1428
1423
|
```
|
|
1429
|
-
|
|
1430
|
-
## Development
|
|
1431
|
-
|
|
1432
|
-
### Logging Level
|
|
1433
|
-
|
|
1434
|
-
Logging level for `craft` can be configured via setting the `CRAFT_LOG_LEVEL`
|
|
1435
|
-
environment variable or using the `--log-level` CLI flag.
|
|
1436
|
-
|
|
1437
|
-
Accepted values are: `Fatal`, `Error`, `Warn`, `Log`, `Info`, `Success`,
|
|
1438
|
-
`Debug`, `Trace`, `Silent`, `Verbose`
|
|
1439
|
-
|
|
1440
|
-
### Dry-run Mode
|
|
1441
|
-
|
|
1442
|
-
Dry-run mode can be enabled via setting the `CRAFT_DRY_RUN` environment variable
|
|
1443
|
-
to any truthy value (any value other than `undefined`, `null`, `""`, `0`,
|
|
1444
|
-
`false`, and `no`). One may also use the `--dry-run` CLI flag.
|
|
1445
|
-
|
|
1446
|
-
In dry-run mode no destructive actions will be performed (creating remote
|
|
1447
|
-
branches, pushing tags, committing files, etc.)
|
|
1448
|
-
|
|
1449
|
-
### Sentry Support
|
|
1450
|
-
|
|
1451
|
-
Errors you encounter while using Craft can be sent to Sentry. To use this
|
|
1452
|
-
feature, add `CRAFT_SENTRY_DSN` variable to your environment (or "craft"
|
|
1453
|
-
configuration file) that contains a Sentry project's DSN.
|
|
1454
|
-
|
|
1455
|
-
For example:
|
|
1456
|
-
|
|
1457
|
-
```shell
|
|
1458
|
-
export CRAFT_SENTRY_DSN='https://1234@sentry.io/2345'
|
|
1459
|
-
```
|
|
1460
|
-
|
|
1461
|
-
### Releasing
|
|
1462
|
-
|
|
1463
|
-
`craft` obviously uses `craft` for preparing and publishing new releases!
|
|
1464
|
-
|
|
1465
|
-
[_Did you mean **recursion**?_](#craft-prepare-preparing-a-new-release)
|