-
Notifications
You must be signed in to change notification settings - Fork 69
Assets includes dist and docs independent of the assets configuration #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Can you run semantic-release with the Can you also provide which version of git you are using? Thanks! |
I am using Here is the log with `2018-11-07T17:38:15.5732408Z ##[section]Starting: Yarn semantic-release Dear Angular and Ember CLI users, please check our known issues |
Looking at those logs I see:
So it seems you have a config somewhere that includes |
Also you mention that you use a config like What I see is that the config is loaded from |
Duplicate of #91 |
We have a 'semantic-release-config' project which is reused across our entire codebase to provide a consistent semantic release setup. This is published as an NPM package in our internal NPM repo. The log is the output of another project, The commit as you can see in the log always adds back everything. Somehow either the configuration gets cached somewhere or something gets ignored. I am attaching also the two package.json files for reference. |
That's not a problem about your workflow. That's a configuration problem. That doesn't appear anywhere in the semantic-release codebase. That config comes from somewhere on your side. Either you are not using the config you think you do, or this config doesn't contain what you think it does. I'm confused about the information you provided. It seems that it comes from multiple projects/runs and there is discrepancy between the config and the logs provided. You also mention you are using a shareable config, but you didn't provide it's content and according to the logs you don't use one. What I can tell you from the logs you provided is that the plugin works as expected based on the config you pass. I would advise to review your config, maybe add some logs that print the content of your package.json and the extended shareable config to be sure you are using what you expect. If you want help, please provide consistent info. That means for the same project and the same semantic-release run:
|
@pvdlg Thank you for checking this. As it seems the problem was in front of the computer :). I was focused on the package.json inside the semantic-release-config, which is the actual configuration of the project and not the shared one. So you can close this bug and also #91 which is caused by the exact same issue. |
We have several projects which share a common semantic-release configuration. These projects generate on the CI server artifacts in the /dist and /docs dirs. As soon as the semantic-release process finishes and creates a release commit, these dirs are added back to the repo.
The shared configuration is:
"release": { "prepare": [ "@semantic-release/changelog", { "path": "@semantic-release/git", "assets": [ "!dist/**/*.*", "!dist/**/*", "!docs/**/*.*", "!docs/**/*", "CHANGELOG.md" ], "message": "chore(release): v${nextRelease.version} \n\n${nextRelease.notes}\n\n[***NO_CI***]" } ], "verifyConditions": [ "@semantic-release/changelog", "@semantic-release/npm", "@semantic-release/git" ], "publish": [ "@semantic-release/npm" ], "success": [], "fail": [] }
In the projects using the shared configuration, we have an entry like:
"release": { "extends": "@company-repo/semantic-release-config" }
I've tried using negative globs for the two directories, removing them completely from the assets (they are anyway in the .gitignore file). All these seem to have no effect, the end result is that the files get added back always.
Here is the semantic release log:
`2018-11-07T17:06:16.3831769Z ##[section]Starting: Yarn semantic-release
2018-11-07T17:06:16.3831769Z ==============================================================================
2018-11-07T17:06:16.3831769Z Task : Yarn task
2018-11-07T17:06:16.3831769Z Description : Executes Yarn
2018-11-07T17:06:16.3831769Z Version : 2.6.999
2018-11-07T17:06:16.3831769Z Author : Geek Learning
2018-11-07T17:06:16.3831769Z Help : More Information (Version 2.6.999).
Dear Angular and Ember CLI users, please check our known issues
2018-11-07T17:06:16.3988548Z ==============================================================================
2018-11-07T17:06:17.9456790Z [command]C:\Windows\system32\cmd.exe /D /S /C "C:\Agents\TFS2013-1_work_tool\yarn\1.12.3\x64\yarn-v1.12.3\bin\yarn.cmd semantic-release"
2018-11-07T17:06:18.7894429Z yarn run v1.12.3
2018-11-07T17:06:18.9144270Z warning package.json: No license field
2018-11-07T17:06:18.9925571Z $ semantic-release
2018-11-07T17:06:21.2581792Z [18:06:21] [semantic-release] » i Running semantic-release version 15.10.8
2018-11-07T17:06:24.1488036Z [18:06:24] [semantic-release] » √ Loaded plugin "verifyConditions" from "@semantic-release/changelog" in shareable config "@company-repo/semantic-release-config"
2018-11-07T17:06:24.1488036Z [18:06:24] [semantic-release] » √ Loaded plugin "verifyConditions" from "@semantic-release/npm" in shareable config "@company-repo/semantic-release-config"
2018-11-07T17:06:24.1645071Z [18:06:24] [semantic-release] » √ Loaded plugin "verifyConditions" from "@semantic-release/git" in shareable config "@company-repo/semantic-release-config"
2018-11-07T17:06:24.1645071Z [18:06:24] [semantic-release] » √ Loaded plugin "analyzeCommits" from "@semantic-release/commit-analyzer"
2018-11-07T17:06:24.1645071Z [18:06:24] [semantic-release] » √ Loaded plugin "generateNotes" from "@semantic-release/release-notes-generator"
2018-11-07T17:06:24.1801537Z [18:06:24] [semantic-release] » √ Loaded plugin "prepare" from "@semantic-release/changelog" in shareable config "@company-repo/semantic-release-config"
2018-11-07T17:06:24.1957639Z [18:06:24] [semantic-release] » √ Loaded plugin "prepare" from "@semantic-release/exec" in shareable config "@company-repo/semantic-release-config"
2018-11-07T17:06:24.2113991Z [18:06:24] [semantic-release] » √ Loaded plugin "prepare" from "@semantic-release/git" in shareable config "@company-repo/semantic-release-config"
2018-11-07T17:06:24.2113991Z [18:06:24] [semantic-release] » √ Loaded plugin "publish" from "@semantic-release/npm" in shareable config "@company-repo/semantic-release-config"
2018-11-07T17:06:24.2426499Z [18:06:24] [semantic-release] » √ Run automated release from branch master
2018-11-07T17:06:24.8207254Z [18:06:24] [semantic-release] » √ Allowed to push to the Git repository
2018-11-07T17:06:24.8207254Z [18:06:24] [semantic-release] » i Start step "verifyConditions" of plugin "@semantic-release/changelog"
2018-11-07T17:06:24.8363362Z [18:06:24] [semantic-release] » √ Completed step "verifyConditions" of plugin "@semantic-release/changelog"
2018-11-07T17:06:24.8363362Z [18:06:24] [semantic-release] » i Start step "verifyConditions" of plugin "@semantic-release/npm"
2018-11-07T17:06:24.9144906Z [18:06:24] [semantic-release] [@semantic-release/npm] » i Verify authentication for registry https://company-npm-repo/npm/
2018-11-07T17:06:24.9457474Z [18:06:24] [semantic-release] [@semantic-release/npm] » i Wrote NPM_TOKEN to C:\Agents\TFS2013-1_work\64\s.npmrc
2018-11-07T17:06:24.9457474Z [18:06:24] [semantic-release] » √ Completed step "verifyConditions" of plugin "@semantic-release/npm"
2018-11-07T17:06:24.9457474Z [18:06:24] [semantic-release] » i Start step "verifyConditions" of plugin "@semantic-release/git"
2018-11-07T17:06:24.9613723Z [18:06:24] [semantic-release] » √ Completed step "verifyConditions" of plugin "@semantic-release/git"
2018-11-07T17:06:26.3363022Z [18:06:26] [semantic-release] » i Found git tag v2.3.0 associated with version 2.3.0
2018-11-07T17:06:26.4613628Z [18:06:26] [semantic-release] » i Found 1 commits since last release
2018-11-07T17:06:26.4613628Z [18:06:26] [semantic-release] » i Start step "analyzeCommits" of plugin "@semantic-release/commit-analyzer"
2018-11-07T17:06:26.4770171Z [18:06:26] [semantic-release] [@semantic-release/commit-analyzer] » i Analyzing commit: fix(package.json): Update semantic config to exclude build artifacts from git
2018-11-07T17:06:26.4770171Z [18:06:26] [semantic-release] [@semantic-release/commit-analyzer] » i The release type for the commit is patch
2018-11-07T17:06:26.4925522Z [18:06:26] [semantic-release] [@semantic-release/commit-analyzer] » i Analysis of 1 commits complete: patch release
2018-11-07T17:06:26.4925522Z [18:06:26] [semantic-release] » √ Completed step "analyzeCommits" of plugin "@semantic-release/commit-analyzer"
2018-11-07T17:06:26.5707128Z [18:06:26] [semantic-release] » i The next release version is 2.3.1
2018-11-07T17:06:26.5707128Z [18:06:26] [semantic-release] » i Start step "generateNotes" of plugin "@semantic-release/release-notes-generator"
2018-11-07T17:06:26.7894274Z [18:06:26] [semantic-release] » √ Completed step "generateNotes" of plugin "@semantic-release/release-notes-generator"
2018-11-07T17:06:26.7894274Z [18:06:26] [semantic-release] » i Start step "prepare" of plugin "@semantic-release/changelog"
2018-11-07T17:06:26.8050523Z [18:06:26] [semantic-release] [@semantic-release/changelog] » i Update C:\Agents\TFS2013-1_work\64\s\CHANGELOG.md
2018-11-07T17:06:26.8050523Z [18:06:26] [semantic-release] » √ Completed step "prepare" of plugin "@semantic-release/changelog"
2018-11-07T17:06:26.8831770Z [18:06:26] [semantic-release] » i Start step "prepare" of plugin "@semantic-release/exec"
2018-11-07T17:06:26.8988693Z [18:06:26] [semantic-release] [@semantic-release/exec] » i Call script echo ## 2.3.1 (2018-11-07)
2018-11-07T17:06:26.8988693Z
2018-11-07T17:06:26.8988693Z
2018-11-07T17:06:26.8988693Z ### Bug Fixes
2018-11-07T17:06:26.8988693Z
2018-11-07T17:06:26.8988693Z * package.json: Update semantic config to exclude build artifacts from git (3e7d281)
2018-11-07T17:06:26.8988693Z
2018-11-07T17:06:26.8988693Z
2018-11-07T17:06:26.8988693Z
2018-11-07T17:06:26.8988693Z > CHANGELOG.md
2018-11-07T17:06:26.9301039Z ## 2.3.1 (2018-11-07)
2018-11-07T17:06:26.9301039Z [18:06:26] [semantic-release] » √ Completed step "prepare" of plugin "@semantic-release/exec"
2018-11-07T17:06:27.0081765Z [18:06:27] [semantic-release] » i Start step "prepare" of plugin "@semantic-release/git"
2018-11-07T17:06:27.3051390Z [18:06:27] [semantic-release] [@semantic-release/git] » i Found 230 file(s) to commit
2018-11-07T17:06:28.4769263Z [18:06:28] [semantic-release] [@semantic-release/git] » i Prepared Git release: v2.3.1
2018-11-07T17:06:28.4769263Z [18:06:28] [semantic-release] » √ Completed step "prepare" of plugin "@semantic-release/git"
2018-11-07T17:06:28.5550546Z [18:06:28] [semantic-release] » i Call plugin generateNotes
2018-11-07T17:06:28.5550546Z [18:06:28] [semantic-release] » i Start step "generateNotes" of plugin "@semantic-release/release-notes-generator"
2018-11-07T17:06:28.6488044Z [18:06:28] [semantic-release] » √ Completed step "generateNotes" of plugin "@semantic-release/release-notes-generator"
2018-11-07T17:06:29.1492554Z [18:06:29] [semantic-release] » √ Created tag v2.3.1
2018-11-07T17:06:29.1492554Z [18:06:29] [semantic-release] » i Start step "publish" of plugin "@semantic-release/npm"
2018-11-07T17:06:29.1644275Z [18:06:29] [semantic-release] [@semantic-release/npm] » i Wrote version 2.3.1 to C:\Agents\TFS2013-1_work\64\s\package.json
2018-11-07T17:06:29.1644275Z [18:06:29] [semantic-release] [@semantic-release/npm] » i Publishing version 2.3.1 to npm registry
2018-11-07T17:06:32.6331781Z npm notice
2018-11-07T17:06:32.6331781Z npm notice package: @company-repo/[email protected]
2018-11-07T17:06:32.6331781Z npm notice === Tarball Contents ===
2018-11-07T17:06:32.6801414Z npm notice 4.1kB package.json
2018-11-07T17:06:32.6801414Z npm notice 3.8kB CHANGELOG.md
2018-11-07T17:06:32.6801414Z npm notice 3.4kB README.md
2018-11-07T17:06:32.6801414Z npm notice 354B dist/common-web-infrastructure.module.js
2018-11-07T17:06:32.6801414Z npm notice 384B dist/common-web-infrastructure.module.js.map
2018-11-07T17:06:32.6801414Z npm notice 527B dist/index.js
2018-11-07T17:06:32.6801414Z npm notice 430B dist/index.js.map
2018-11-07T17:06:32.6957404Z npm notice 1.2kB dist/modularity/binding-to-syntax.js
2018-11-07T17:06:32.6957404Z npm notice 1.2kB dist/modularity/binding-to-syntax.js.map
2018-11-07T17:06:32.6957404Z npm notice 1.4kB dist/modularity/wf-container.js
2018-11-07T17:06:32.6957404Z npm notice 1.3kB dist/modularity/wf-container.js.map
2018-11-07T17:06:32.6957404Z npm notice 2.1kB dist/services/http/ajax-download.service.js
2018-11-07T17:06:32.6957404Z npm notice 810B dist/services/http/ajax-download.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 267B dist/services/http/error-code.js
2018-11-07T17:06:32.6957404Z npm notice 392B dist/services/http/error-code.js.map
2018-11-07T17:06:32.6957404Z npm notice 2.4kB dist/services/http/error-code.spec.js
2018-11-07T17:06:32.6957404Z npm notice 1.2kB dist/services/http/error-code.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 345B dist/services/http/file-blob.js
2018-11-07T17:06:32.6957404Z npm notice 456B dist/services/http/file-blob.js.map
2018-11-07T17:06:32.6957404Z npm notice 2.4kB dist/services/http/file-blob.spec.js
2018-11-07T17:06:32.6957404Z npm notice 1.3kB dist/services/http/file-blob.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 13.2kB dist/services/http/http.service.js
2018-11-07T17:06:32.6957404Z npm notice 6.8kB dist/services/http/http.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 16.7kB dist/services/http/http.service.spec.js
2018-11-07T17:06:32.6957404Z npm notice 12.7kB dist/services/http/http.service.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 2.0kB dist/services/http/secure-http.service.js
2018-11-07T17:06:32.6957404Z npm notice 883B dist/services/http/secure-http.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 4.0kB dist/services/http/secure-http.service.spec.js
2018-11-07T17:06:32.6957404Z npm notice 2.4kB dist/services/http/secure-http.service.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 48B dist/services/localization/contracts/language-api.service.js
2018-11-07T17:06:32.6957404Z npm notice 173B dist/services/localization/contracts/language-api.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 5.8kB dist/services/localization/language.service.js
2018-11-07T17:06:32.6957404Z npm notice 2.2kB dist/services/localization/language.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 6.2kB dist/services/localization/language.service.spec.js
2018-11-07T17:06:32.6957404Z npm notice 4.3kB dist/services/localization/language.service.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 36B dist/services/localization/models/language.js
2018-11-07T17:06:32.6957404Z npm notice 146B dist/services/localization/models/language.js.map
2018-11-07T17:06:32.6957404Z npm notice 4.2kB dist/services/location.service.js
2018-11-07T17:06:32.6957404Z npm notice 2.1kB dist/services/location.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 319B dist/services/logging/log-level.js
2018-11-07T17:06:32.6957404Z npm notice 307B dist/services/logging/log-level.js.map
2018-11-07T17:06:32.6957404Z npm notice 38B dist/services/logging/log-target.js
2018-11-07T17:06:32.6957404Z npm notice 135B dist/services/logging/log-target.js.map
2018-11-07T17:06:32.6957404Z npm notice 2.5kB dist/services/logging/logging-initializer.service.js
2018-11-07T17:06:32.6957404Z npm notice 1.7kB dist/services/logging/logging-initializer.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 4.7kB dist/services/logging/logging-initializer.service.spec.js
2018-11-07T17:06:32.6957404Z npm notice 3.1kB dist/services/logging/logging-initializer.service.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 8.0kB dist/services/logging/logging.service.js
2018-11-07T17:06:32.6957404Z npm notice 6.2kB dist/services/logging/logging.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 1.3kB dist/services/pattern-search.service.js
2018-11-07T17:06:32.6957404Z npm notice 745B dist/services/pattern-search.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 3.1kB dist/services/pattern-search.service.spec.js
2018-11-07T17:06:32.6957404Z npm notice 1.4kB dist/services/pattern-search.service.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 3.9kB dist/services/security/security.service.js
2018-11-07T17:06:32.6957404Z npm notice 1.5kB dist/services/security/security.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 11.9kB dist/services/security/security.service.spec.js
2018-11-07T17:06:32.6957404Z npm notice 8.3kB dist/services/security/security.service.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 2.9kB dist/services/serialization.service.js
2018-11-07T17:06:32.6957404Z npm notice 955B dist/services/serialization.service.js.map
2018-11-07T17:06:32.6957404Z npm notice 3.9kB dist/services/serialization.service.spec.js
2018-11-07T17:06:32.6957404Z npm notice 2.1kB dist/services/serialization.service.spec.js.map
2018-11-07T17:06:32.6957404Z npm notice 2.7kB dist/services/services.module.js
2018-11-07T17:06:32.6957404Z npm notice 2.3kB dist/services/services.module.js.map
2018-11-07T17:06:32.6957404Z npm notice 40B dist/services/signalr/interfaces/proxy-client.js
2018-11-07T17:06:32.6957404Z npm notice 153B dist/services/signalr/interfaces/proxy-client.js.map
2018-11-07T17:06:32.6957404Z npm notice 6.3kB dist/services/signalr/signalr-connection.service.js
2018-11-07T17:06:32.7113029Z npm notice 3.8kB dist/services/signalr/signalr-connection.service.js.map
2018-11-07T17:06:32.7113029Z npm notice 19.5kB dist/services/signalr/signalr-connection.service.spec.js
2018-11-07T17:06:32.7113029Z npm notice 14.7kB dist/services/signalr/signalr-connection.service.spec.js.map
2018-11-07T17:06:32.7113029Z npm notice 396B dist/services/signalr/subscription.js
2018-11-07T17:06:32.7113029Z npm notice 468B dist/services/signalr/subscription.js.map
2018-11-07T17:06:32.7113029Z npm notice 3.3kB dist/services/signalr/subscription.spec.js
2018-11-07T17:06:32.7113029Z npm notice 2.0kB dist/services/signalr/subscription.spec.js.map
2018-11-07T17:06:32.7113029Z npm notice 1.5kB dist/services/source-name-resolution.service.js
2018-11-07T17:06:32.7113029Z npm notice 1.0kB dist/services/source-name-resolution.service.js.map
2018-11-07T17:06:32.7113029Z npm notice 6.1kB dist/services/source-name-resolution.service.spec.js
2018-11-07T17:06:32.7269289Z npm notice 4.4kB dist/services/source-name-resolution.service.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 3.8kB dist/services/time.service.js
2018-11-07T17:06:32.7269289Z npm notice 3.7kB dist/services/time.service.js.map
2018-11-07T17:06:32.7269289Z npm notice 11.9kB dist/services/time.service.spec.js
2018-11-07T17:06:32.7269289Z npm notice 9.3kB dist/services/time.service.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 1.8kB dist/services/unique-id.service.js
2018-11-07T17:06:32.7269289Z npm notice 750B dist/services/unique-id.service.js.map
2018-11-07T17:06:32.7269289Z npm notice 3.3kB dist/services/unique-id.service.spec.js
2018-11-07T17:06:32.7269289Z npm notice 1.7kB dist/services/unique-id.service.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 202B dist/types/common-web-infrastructure.module.d.ts
2018-11-07T17:06:32.7269289Z npm notice 626B dist/types/index.d.ts
2018-11-07T17:06:32.7269289Z npm notice 1.1kB dist/types/modularity/binding-to-syntax.d.ts
2018-11-07T17:06:32.7269289Z npm notice 2.0kB dist/types/modularity/wf-container.d.ts
2018-11-07T17:06:32.7269289Z npm notice 194B dist/types/services/http/ajax-download.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 183B dist/types/services/http/error-code.d.ts
2018-11-07T17:06:32.7269289Z npm notice 304B dist/types/services/http/error-code.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 187B dist/types/services/http/file-blob.d.ts
2018-11-07T17:06:32.7269289Z npm notice 253B dist/types/services/http/file-blob.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 6.4kB dist/types/services/http/http.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/http/http.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 547B dist/types/services/http/secure-http.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/http/secure-http.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 279B dist/types/services/localization/contracts/language-api.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 2.5kB dist/types/services/localization/language.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/localization/language.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 172B dist/types/services/localization/models/language.d.ts
2018-11-07T17:06:32.7269289Z npm notice 2.4kB dist/types/services/location.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 164B dist/types/services/logging/log-level.d.ts
2018-11-07T17:06:32.7269289Z npm notice 90B dist/types/services/logging/log-target.d.ts
2018-11-07T17:06:32.7269289Z npm notice 357B dist/types/services/logging/logging-initializer.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/logging/logging-initializer.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 1.3kB dist/types/services/logging/logging.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 129B dist/types/services/pattern-search.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/pattern-search.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 2.2kB dist/types/services/security/security.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/security/security.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 1.7kB dist/types/services/serialization.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 399B dist/types/services/serialization.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 1.3kB dist/types/services/services.module.d.ts
2018-11-07T17:06:32.7269289Z npm notice 91B dist/types/services/signalr/interfaces/proxy-client.d.ts
2018-11-07T17:06:32.7269289Z npm notice 960B dist/types/services/signalr/signalr-connection.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 19B dist/types/services/signalr/signalr-connection.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 276B dist/types/services/signalr/subscription.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/signalr/subscription.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 176B dist/types/services/source-name-resolution.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 440B dist/types/services/source-name-resolution.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 1.2kB dist/types/services/time.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 1.1kB dist/types/services/time.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 301B dist/types/services/unique-id.service.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/services/unique-id.service.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 445B dist/types/utils/deferred.d.ts
2018-11-07T17:06:32.7269289Z npm notice 273B dist/types/utils/deferred.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 454B dist/types/utils/dictionary.d.ts
2018-11-07T17:06:32.7269289Z npm notice 323B dist/types/utils/generics.d.ts
2018-11-07T17:06:32.7269289Z npm notice 170B dist/types/utils/math.extension.d.ts
2018-11-07T17:06:32.7269289Z npm notice 228B dist/types/utils/math.extension.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 64B dist/types/utils/mix.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/utils/mix.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 12B dist/types/utils/moment.extension.d.ts
2018-11-07T17:06:32.7269289Z npm notice 83B dist/types/utils/promise.extension.d.ts
2018-11-07T17:06:32.7269289Z npm notice 31B dist/types/utils/promise.extension.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 112B dist/types/utils/string.extension.d.ts
2018-11-07T17:06:32.7269289Z npm notice 225B dist/types/utils/string.extension.spec.d.ts
2018-11-07T17:06:32.7269289Z npm notice 1.1kB dist/utils/deferred.js
2018-11-07T17:06:32.7269289Z npm notice 1.1kB dist/utils/deferred.js.map
2018-11-07T17:06:32.7269289Z npm notice 4.9kB dist/utils/deferred.spec.js
2018-11-07T17:06:32.7269289Z npm notice 3.1kB dist/utils/deferred.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 38B dist/utils/dictionary.js
2018-11-07T17:06:32.7269289Z npm notice 121B dist/utils/dictionary.js.map
2018-11-07T17:06:32.7269289Z npm notice 36B dist/utils/generics.js
2018-11-07T17:06:32.7269289Z npm notice 117B dist/utils/generics.js.map
2018-11-07T17:06:32.7269289Z npm notice 1.6kB dist/utils/math.extension.js
2018-11-07T17:06:32.7269289Z npm notice 1.6kB dist/utils/math.extension.js.map
2018-11-07T17:06:32.7269289Z npm notice 8.0kB dist/utils/math.extension.spec.js
2018-11-07T17:06:32.7269289Z npm notice 5.7kB dist/utils/math.extension.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 413B dist/utils/mix.js
2018-11-07T17:06:32.7269289Z npm notice 483B dist/utils/mix.js.map
2018-11-07T17:06:32.7269289Z npm notice 2.7kB dist/utils/mix.spec.js
2018-11-07T17:06:32.7269289Z npm notice 1.4kB dist/utils/mix.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 226B dist/utils/moment.extension.js
2018-11-07T17:06:32.7269289Z npm notice 314B dist/utils/moment.extension.js.map
2018-11-07T17:06:32.7269289Z npm notice 171B dist/utils/promise.extension.js
2018-11-07T17:06:32.7269289Z npm notice 283B dist/utils/promise.extension.js.map
2018-11-07T17:06:32.7269289Z npm notice 2.4kB dist/utils/promise.extension.spec.js
2018-11-07T17:06:32.7269289Z npm notice 1.1kB dist/utils/promise.extension.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 1.0kB dist/utils/string.extension.js
2018-11-07T17:06:32.7269289Z npm notice 1.3kB dist/utils/string.extension.js.map
2018-11-07T17:06:32.7269289Z npm notice 4.1kB dist/utils/string.extension.spec.js
2018-11-07T17:06:32.7269289Z npm notice 2.5kB dist/utils/string.extension.spec.js.map
2018-11-07T17:06:32.7269289Z npm notice 70.7kB docs/assets/css/main.css
2018-11-07T17:06:32.7269289Z npm notice 30.8kB docs/assets/css/main.css.map
2018-11-07T17:06:32.7269289Z npm notice 9.5kB docs/assets/images/icons.png
2018-11-07T17:06:32.7269289Z npm notice 27.7kB docs/assets/images/[email protected]
2018-11-07T17:06:32.7269289Z npm notice 480B docs/assets/images/widgets.png
2018-11-07T17:06:32.7269289Z npm notice 855B docs/assets/images/[email protected]
2018-11-07T17:06:32.7425521Z npm notice 152.1kB docs/assets/js/main.js
2018-11-07T17:06:32.7425521Z npm notice 88.9kB docs/assets/js/search.js
2018-11-07T17:06:32.7425521Z npm notice 9.9kB docs/classes/a.html
2018-11-07T17:06:32.7425521Z npm notice 12.0kB docs/classes/ajaxdownloadservice.html
2018-11-07T17:06:32.7425521Z npm notice 9.9kB docs/classes/b.html
2018-11-07T17:06:32.7425521Z npm notice 33.6kB docs/classes/bindingtosyntax.html
2018-11-07T17:06:32.7425521Z npm notice 10.1kB docs/classes/commonwebinfrastructuremodule.html
2018-11-07T17:06:32.7425521Z npm notice 20.5kB docs/classes/deferred.html
2018-11-07T17:06:32.7425521Z npm notice 22.1kB docs/classes/deferredspec.html
2018-11-07T17:06:32.7425521Z npm notice 13.5kB docs/classes/errorcode.html
2018-11-07T17:06:32.7425521Z npm notice 21.1kB docs/classes/errorcodespec.html
2018-11-07T17:06:32.7425521Z npm notice 12.8kB docs/classes/fileblob.html
2018-11-07T17:06:32.7425521Z npm notice 21.6kB docs/classes/fileblobspec.html
2018-11-07T17:06:32.7425521Z npm notice 57.0kB docs/classes/httpservice.html
2018-11-07T17:06:32.7425521Z npm notice 31.9kB docs/classes/httpservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 10.8kB docs/classes/item.html
2018-11-07T17:06:32.7425521Z npm notice 13.3kB docs/classes/languageapiservicestub.html
2018-11-07T17:06:32.7425521Z npm notice 24.3kB docs/classes/languageservice.html
2018-11-07T17:06:32.7425521Z npm notice 22.0kB docs/classes/languageservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 36.0kB docs/classes/locationservice.html
2018-11-07T17:06:32.7425521Z npm notice 11.1kB docs/classes/logginginitializerservice.html
2018-11-07T17:06:32.7425521Z npm notice 21.8kB docs/classes/logginginitializerservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 28.4kB docs/classes/loggingservice.html
2018-11-07T17:06:32.7425521Z npm notice 22.0kB docs/classes/mathextensionspec.html
2018-11-07T17:06:32.7425521Z npm notice 22.0kB docs/classes/mixspec.html
2018-11-07T17:06:32.7425521Z npm notice 11.2kB docs/classes/patternsearchservice.html
2018-11-07T17:06:32.7425521Z npm notice 22.6kB docs/classes/patternsearchservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 22.3kB docs/classes/promiseextensionspec.html
2018-11-07T17:06:32.7425521Z npm notice 60.1kB docs/classes/securehttpservice.html
2018-11-07T17:06:32.7425521Z npm notice 28.1kB docs/classes/securehttpservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 22.4kB docs/classes/securityservice.html
2018-11-07T17:06:32.7425521Z npm notice 22.5kB docs/classes/securityservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 15.6kB docs/classes/serializationservice.html
2018-11-07T17:06:32.7425521Z npm notice 22.0kB docs/classes/serializationservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 17.9kB docs/classes/signalrconnectionservice.html
2018-11-07T17:06:32.7425521Z npm notice 21.7kB docs/classes/signalrconnectionservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 12.2kB docs/classes/signalrconnectionstate.html
2018-11-07T17:06:32.7425521Z npm notice 12.9kB docs/classes/sourcenameresolutionservice.html
2018-11-07T17:06:32.7425521Z npm notice 22.2kB docs/classes/sourcenameresolutionservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 7.9kB docs/classes/sourcetestclass.html
2018-11-07T17:06:32.7425521Z npm notice 21.7kB docs/classes/stringextensionsspec.html
2018-11-07T17:06:32.7425521Z npm notice 13.5kB docs/classes/subscription.html
2018-11-07T17:06:32.7425521Z npm notice 22.4kB docs/classes/subscriptionspec.html
2018-11-07T17:06:32.7425521Z npm notice 14.3kB docs/classes/subscriptionstub.html
2018-11-07T17:06:32.7425521Z npm notice 37.3kB docs/classes/timeservice.html
2018-11-07T17:06:32.7425521Z npm notice 21.8kB docs/classes/timeservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 11.7kB docs/classes/uniqueidservice.html
2018-11-07T17:06:32.7425521Z npm notice 22.0kB docs/classes/uniqueidservicespec.html
2018-11-07T17:06:32.7425521Z npm notice 63.7kB docs/classes/wfcontainer.html
2018-11-07T17:06:32.7425521Z npm notice 12.6kB docs/enums/loglevel.html
2018-11-07T17:06:32.7425521Z npm notice 10.2kB docs/enums/logtarget.html
2018-11-07T17:06:32.7425521Z npm notice 101.6kB docs/globals.html
2018-11-07T17:06:32.7425521Z npm notice 24.5kB docs/index.html
2018-11-07T17:06:32.7425521Z npm notice 12.7kB docs/interfaces/ilanguageapiservice.html
2018-11-07T17:06:32.7425521Z npm notice 10.7kB docs/interfaces/iproxyclient.html
2018-11-07T17:06:32.7425521Z npm notice 52.6kB docs/interfaces/iwfcontainer.html
2018-11-07T17:06:32.7425521Z npm notice 11.7kB docs/interfaces/json.html
2018-11-07T17:06:32.7425521Z npm notice 12.9kB docs/interfaces/language.html
2018-11-07T17:06:32.7425521Z npm notice 13.3kB docs/interfaces/math.html
2018-11-07T17:06:32.7425521Z npm notice 10.2kB docs/interfaces/promiseconstructor.html
2018-11-07T17:06:32.7425521Z npm notice 12.5kB docs/interfaces/string.html
2018-11-07T17:06:32.7425521Z npm notice === Tarball Details ===
2018-11-07T17:06:32.7425521Z npm notice name: @company-repo/common-web-infrastructure
2018-11-07T17:06:32.7425521Z npm notice version: 2.3.1
2018-11-07T17:06:32.7425521Z npm notice package size: 248.9 kB
2018-11-07T17:06:32.7425521Z npm notice unpacked size: 2.1 MB
2018-11-07T17:06:32.7425521Z npm notice shasum: ac56585f044904f68c00b1bea809eff14d4ecba7
2018-11-07T17:06:32.7425521Z npm notice integrity: sha512-jvMbNbpqOBAhP[...]nccD0eAwoCyYA==
2018-11-07T17:06:32.7425521Z npm notice total files: 232
2018-11-07T17:06:32.7425521Z npm notice
2018-11-07T17:06:36.2425558Z + @company-repo/[email protected]
2018-11-07T17:06:36.2581789Z [18:06:36] [semantic-release] [@semantic-release/npm] » i Published @company-repo/[email protected] on https://company-npm-repo/npm/
2018-11-07T17:06:37.1956762Z [18:06:37] [semantic-release] » √ Completed step "publish" of plugin "@semantic-release/npm"
2018-11-07T17:06:37.1956762Z [18:06:37] [semantic-release] » √ Published release 2.3.1
2018-11-07T17:06:37.2113016Z Done in 18.44s.
2018-11-07T17:06:37.2738014Z ##[section]Finishing: Yarn semantic-release
`
The text was updated successfully, but these errors were encountered: