Skip to content

Commit 397587e

Browse files
committed
release: test
1 parent 50c86f1 commit 397587e

File tree

5 files changed

+18
-0
lines changed

5 files changed

+18
-0
lines changed

packages/components/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 10.0.0-mock.0
4+
5+
TEST
6+
37
## 2.1.1
48

59
- Fix: The GFI's new flag `userInteraction` on the close interaction is now filled and forwarded according to whether the close call was due to the user intentionally closing the GFI rather than opening a new GFI. This is required for a fix in the GFI plugin.

packages/plugins/AddressSearch/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 10.0.0-mock.0
4+
5+
TEST
6+
37
## 1.2.1
48

59
- Fix: Keyboard navigation of results to work on all browsers.

packages/plugins/Attributions/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 10.0.0-mock.0
4+
5+
TEST
6+
37
## 1.2.1
48

59
- Fix: There were incomplete changes regarding how to write current year and month references. They have been rolled back to `<YEAR>` and `<MONTH>` in both documentation and code.

packages/plugins/LoadingIndicator/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 10.0.0-mock.0
4+
5+
TEST
6+
37
## 1.1.0
48

59
- Feature: Improved implementation to make plugin SPA-ready.

scripts/publishPackages.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@ for (const path of packages) {
3232
const nextVersion = checkForNewVersion(path)
3333
if (nextVersion) {
3434
const context = { cwd: path, stdio: 'inherit' }
35+
/*
3536
cp.execSync('npm version ' + nextVersion, context)
3637
cp.execSync(
3738
'npm set //registry.npmjs.org/:_authToken ' +
3839
process.env.NODE_AUTH_TOKEN,
3940
{ cwd: path }
4041
)
4142
cp.execSync('npm publish --access=public', context)
43+
*/
4244
tags.push(`${getPackageName(path)}@${nextVersion}`)
4345
}
4446
} catch (e) {

0 commit comments

Comments
 (0)