Skip to content
This repository has been archived by the owner on Apr 19, 2023. It is now read-only.

Commit

Permalink
Merge branch 'release/v11.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
manuth committed Aug 23, 2021
2 parents f24dab0 + 44cee5f commit 17a514c
Show file tree
Hide file tree
Showing 17 changed files with 1,582 additions and 1,295 deletions.
6 changes: 2 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ steps:
when:
event:
- tag
ref:
- refs/tags/v[0-9]*.[0-9]*.[0-9]*
- name: publish package to npm
image: node
depends_on:
Expand Down Expand Up @@ -73,8 +71,8 @@ steps:
depends_on:
- create package
commands:
- npm install escape-string-regexp --no-save
- node -e "console.log(require('escape-string-regexp')('${DRONE_TAG}'))" > .tagName.txt
- npm install @stdlib/utils-escape-regexp-string --no-save
- node -e "console.log(require('@stdlib/utils-escape-regexp-string')('${DRONE_TAG}'))" > .tagName.txt
when:
event:
- tag
Expand Down
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,8 @@ dist

# Unit-Tests
packages/*/test/

# Temporary release-assets
.tagName.txt
.releaseNotes.md
.releaseTitle.md
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## ExtendedYoGenerator [Unreleased]

[Show differences](https://github.com/manuth/ExtendedYoGenerator/compare/v11.0.1...dev)
[Show differences](https://github.com/manuth/ExtendedYoGenerator/compare/v11.0.2...dev)

## ExtendedYoGenerator v11.0.2
### Fixed
- Broken release-scripts
- Drone-pipeline to prevent package-creation from being skipped

### Updated
- All dependencies
- Settings to disable timeouts for mocha unit-tests

[Show differences](https://github.com/manuth/ExtendedYoGenerator/compare/v11.0.1...v11.0.2)

## ExtendedYoGenerator v11.0.1
### Added
Expand Down
12 changes: 10 additions & 2 deletions ExtendedYoGenerator.code-workspace
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@
"request": "launch",
"name": "Launch ExtendedYoGenerator Tests",
"cwd": "${workspaceFolder:ExtendedYoGenerator}",
"program": "${workspaceFolder:ExtendedYoGenerator}/node_modules/mocha/bin/_mocha",
"program": "${workspaceFolder:ExtendedYoGenerator}/node_modules/mocha/bin/mocha",
"args": [
"--timeout",
"0"
],
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": "Build",
"sourceMaps": true,
Expand All @@ -45,7 +49,11 @@
"request": "launch",
"name": "Launch ExtendedYoGeneratorTest Tests",
"cwd": "${workspaceFolder:ExtendedYoGeneratorTest}",
"program": "${workspaceFolder:ExtendedYoGeneratorTest}/node_modules/mocha/bin/_mocha",
"program": "${workspaceFolder:ExtendedYoGeneratorTest}/node_modules/mocha/bin/mocha",
"args": [
"--timeout",
"0"
],
"internalConsoleOptions": "openOnSessionStart",
"preLaunchTask": "Build",
"sourceMaps": true,
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "11.0.1",
"version": "11.0.2",
"packages": [
"./packages/*"
],
Expand Down
Loading

0 comments on commit 17a514c

Please sign in to comment.