Skip to content

Commit 33741b3

Browse files
committed
release: @flex-development/[email protected] (#18)
1 parent a147836 commit 33741b3

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

.env

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,15 @@
66

77
DEBUG='*,-babel*,-compression,-eslint:*,-eslintrc:*,-lint-staged:*,-mocha:*,-typescript-eslint*,-yarn'
88
DEBUG_COLORS=true
9-
[[ !$GITHUB_ACTIONS ]] && GITHUB_WORKSPACE=$PWD
9+
GITHUB_WORKSPACE=$PWD
1010
NODE_ENV=development
1111
# Fixes `YN0000: Strings should avoid referencing the node_modules directory`
1212
# warning during the `yarn check:install` lifecycle
1313
NODE_MODULES=node_modules
1414
NPM_TOKEN=$NPM_TOKEN_FLDV
1515
PAT_GPR=$PAT_GPR_FLDV
16-
TS_NODE_PROJECT="$GITHUB_WORKSPACE/tsconfig.json"
16+
PROJECT_CWD=$GITHUB_WORKSPACE
17+
TS_NODE_PROJECT="$PROJECT_CWD/tsconfig.json"
1718

1819
# NODE_OPTIONS - Use ESM
1920
# See: https://github.com/TypeStrong/ts-node/issues/1007
@@ -29,7 +30,7 @@ if [ -f "./node_modules/ts-node/esm.mjs" ]; then
2930
SPECIFIER_RESOLUTION='--es-module-specifier-resolution node'
3031

3132
# Use custom ESM loader
32-
LOADER="--loader $GITHUB_WORKSPACE/tools/loaders/esm.mjs"
33+
LOADER="--loader $PROJECT_CWD/tools/loaders/esm.mjs"
3334

3435
# Specify Node options
3536
NODE_OPTIONS="$JSON_MODULES $SPECIFIER_RESOLUTION $LOADER"

.github/labels.yml

+4
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@
6060
description: Type guards
6161
color: 74cefc
6262

63+
- name: scope:ponyfill
64+
description: '@flex-development/aggregate-error-ponyfill'
65+
color: 74cefc
66+
6367
- name: scope:tests
6468
description: Testing
6569
color: 74cefc

.github/workflows/continuous-deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
5050
const { 0: workspace_no_scope, 1: version } = tag.split('@')
5151
52-
const dir = workspace_no_scope.split('-')[1] || workspace_no_scope
52+
const dir = workspace_no_scope
5353
const workspace = `@${context.repo.owner}/${workspace_no_scope}`
5454
5555
core.exportVariable('tag', tag)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
## 1.0.0 (2021-11-04)
6+
7+
8+
### :hammer: Build
9+
10+
* **yarn:** add `aggregate-error-ponyfill` workspace ([4b6b915](https://github.com/flex-development/aggregate-error-ponyfill/commit/4b6b915f92ae12ad521409ceb4b031b2974eb745))

packages/aggregate-error-ponyfill/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
"homepage": "https://github.com/flex-development/exceptions/tree/next/packages/aggregate-error-ponyfill",
1313
"repository": {
1414
"type": "git",
15-
"url": "[email protected]:flex-development/aggregate-error-ponyfill.git",
15+
"url": "[email protected]:flex-development/exceptions.git",
1616
"directory": "packages/aggregate-error-ponyfill"
1717
},
1818
"bugs": {
19-
"url": "https://github.com/flex-development/aggregate-error-ponyfill/issues"
19+
"url": "https://github.com/flex-development/exceptions/issues"
2020
},
2121
"license": "BSD-3-Clause",
2222
"contributors": [

0 commit comments

Comments
 (0)