Skip to content
This repository was archived by the owner on Sep 28, 2023. It is now read-only.

Commit b601568

Browse files
committed
Merge branch 'release/v2.2.3'
2 parents 6198682 + 3995b30 commit b601568

File tree

13 files changed

+1147
-687
lines changed

13 files changed

+1147
-687
lines changed

.drone.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ steps:
3535
when:
3636
event:
3737
- tag
38-
ref:
39-
- refs/tags/v[0-9]*.[0-9]*.[0-9]*
4038
- name: publish package to npm
4139
image: node
4240
depends_on:
@@ -73,8 +71,8 @@ steps:
7371
depends_on:
7472
- create package
7573
commands:
76-
- npm install escape-string-regexp --no-save
77-
- node -e "console.log(require('escape-string-regexp')('${DRONE_TAG}'))" > .tagName.txt
74+
- npm install @stdlib/utils-escape-regexp-string --no-save
75+
- node -e "console.log(require('@stdlib/utils-escape-regexp-string')('${DRONE_TAG}'))" > .tagName.txt
7876
when:
7977
event:
8078
- tag

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,8 @@ dist
105105

106106
# TernJS port file
107107
.tern-port
108+
109+
# Temporary release-assets
110+
.tagName.txt
111+
.releaseNotes.md
112+
.releaseTitle.md

.vscode/launch.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99
"request": "launch",
1010
"name": "Launch Tests",
1111
"program": "${workspaceFolder}/node_modules/mocha/bin/mocha",
12+
"args": [
13+
"--timeout",
14+
"0"
15+
],
1216
"internalConsoleOptions": "openOnSessionStart",
1317
"preLaunchTask": "Build",
1418
"sourceMaps": true,

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
66
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true,
77
"typescript.format.placeOpenBraceOnNewLineForFunctions": true,
8-
"mochaExplorer.require": "source-map-support/register"
8+
"mochaExplorer.require": "source-map-support/register",
9+
"mochaExplorer.timeout": 0
910
}

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## NPMPackageEditor [Unreleased]
88

9-
[Show differences](https://github.com/manuth/NPMPackageEditor/compare/v2.2.2...dev)
9+
[Show differences](https://github.com/manuth/NPMPackageEditor/compare/v2.2.3...dev)
10+
11+
## NPMPackageEditor v2.2.3
12+
### Fixed
13+
- Broken publish-scripts
14+
15+
### Updated
16+
- All dependencies
17+
- The `Package`-class to not output `dependencies` or `devDependencies` if none are present
18+
- Settings to disable timeouts for mocha unit-tests
19+
20+
[Show differences](https://github.com/manuth/NPMPackageEditor/compare/v2.2.2...v2.2.3)
1021

1122
## NPMPackageEditor v2.2.2
1223
### Fixed

0 commit comments

Comments
 (0)