Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • Hotfix/1376-projectCreation
  • Hotfix/1475-projectCreateSpinner
  • Hotfix/843-LargeFiles
  • Hotfix/902-fixUPAndPEC
  • Hotfix/995-fixDeletionRedirect
  • Issue/0039-participatingOrganizationsSearch
  • Issue/1870-publicPrivateVisibility
  • Product/1107-frontendPerformance
  • Product/1180-genericOrganizationMembershipFunction
  • Product/1183-stubCreation
  • Product/1214-CleanUp
  • Product/1215-gitlabCleanUp
  • Product/1273-CleanUpUserProfileProjectCreation
  • Product/1666-removeRadioButtons
  • Product/510-niceProjectUrl
  • Product/690-copyButton
  • Product/734-affiliationSensitivity
  • Product/851-loadingText
  • Sprint/2020-10
  • Sprint/2020-14
  • Sprint/2020-15
  • Sprint/2020-18
  • Sprint/2020-19
  • Sprint/2020-22
  • Sprint/2021-02
  • Sprint/2021-05
  • Sprint/2021-08
  • Sprint/2021-16
  • Sprint/2021-19
  • Sprint/2021-21
  • Sprint/2021-22
  • Sprint/2022-01
  • Topic/1059-affiliationSensitivityUI
  • Topic/1195-stubCreation
  • Topic/1196-loadingText
  • Topic/1225-CleanUpApps
  • Topic/1227-frontendPerformance
  • Topic/1281-genericOrganizationMembershipFunction
  • Topic/1686-removeRadioButtons
  • Topic/804-niceProjectUrl
  • Topic/983-copyButton
  • dev
  • gitkeep
  • master
  • v1.0.0
  • v1.0.1
  • v1.1.0
  • v1.1.1
  • v1.1.2
  • v1.1.3
  • v1.10.0
  • v1.10.1
  • v1.11.0
  • v1.11.1
  • v1.12.0
  • v1.13.0
  • v1.13.1
  • v1.13.2
  • v1.14.0
  • v1.15.0
  • v1.15.1
  • v1.15.2
  • v1.16.0
  • v1.2.0
  • v1.3.0
  • v1.3.1
  • v1.4.0
  • v1.4.1
  • v1.5.0
  • v1.5.1
  • v1.5.2
  • v1.6.0
  • v1.6.1
  • v1.7.0
  • v1.8.0
  • v1.8.1
  • v1.9.0
  • v1.9.1
78 results

Target

Select target project
  • coscine/frontend/libraries/project-creation
1 result
Select Git revision
  • Hotfix/1376-projectCreation
  • Hotfix/1475-projectCreateSpinner
  • Hotfix/843-LargeFiles
  • Hotfix/902-fixUPAndPEC
  • Hotfix/995-fixDeletionRedirect
  • Issue/0039-participatingOrganizationsSearch
  • Issue/1870-publicPrivateVisibility
  • Product/1107-frontendPerformance
  • Product/1180-genericOrganizationMembershipFunction
  • Product/1183-stubCreation
  • Product/1214-CleanUp
  • Product/1215-gitlabCleanUp
  • Product/1273-CleanUpUserProfileProjectCreation
  • Product/1666-removeRadioButtons
  • Product/510-niceProjectUrl
  • Product/690-copyButton
  • Product/734-affiliationSensitivity
  • Product/851-loadingText
  • Sprint/2020-10
  • Sprint/2020-14
  • Sprint/2020-15
  • Sprint/2020-18
  • Sprint/2020-19
  • Sprint/2020-22
  • Sprint/2021-02
  • Sprint/2021-05
  • Sprint/2021-08
  • Sprint/2021-16
  • Sprint/2021-19
  • Sprint/2021-21
  • Sprint/2021-22
  • Sprint/2022-01
  • Topic/1059-affiliationSensitivityUI
  • Topic/1195-stubCreation
  • Topic/1196-loadingText
  • Topic/1225-CleanUpApps
  • Topic/1227-frontendPerformance
  • Topic/1281-genericOrganizationMembershipFunction
  • Topic/1686-removeRadioButtons
  • Topic/804-niceProjectUrl
  • Topic/983-copyButton
  • dev
  • gitkeep
  • master
  • v1.0.0
  • v1.0.1
  • v1.1.0
  • v1.1.1
  • v1.1.2
  • v1.1.3
  • v1.10.0
  • v1.10.1
  • v1.11.0
  • v1.11.1
  • v1.12.0
  • v1.13.0
  • v1.13.1
  • v1.13.2
  • v1.14.0
  • v1.15.0
  • v1.15.1
  • v1.15.2
  • v1.16.0
  • v1.2.0
  • v1.3.0
  • v1.3.1
  • v1.4.0
  • v1.4.1
  • v1.5.0
  • v1.5.1
  • v1.5.2
  • v1.6.0
  • v1.6.1
  • v1.7.0
  • v1.8.0
  • v1.8.1
  • v1.9.0
  • v1.9.1
78 results
Show changes
Commits on Source (3)
stages:
- build
- test
- docs
- publish
- release
- pre_release
before_script:
- npm install
build:
stage: build
script:
- npm run build
except:
variables:
- $GITLAB_USER_ID == $GIT_BOT_USER_ID
test:
stage: test
script:
- npm run test:unit
except:
variables:
- $GITLAB_USER_ID == $GIT_BOT_USER_ID
docs:
stage: docs
script:
- .\publishDocs.ps1 $GITLAB_TOKEN
- npm run build
- npm test
except:
refs:
- tags
variables:
- $GITLAB_USER_ID == $GIT_BOT_USER_ID
publish:
stage: publish
script:
......@@ -54,5 +39,14 @@ release:
only:
- tags
after_script:
- Cmd /C "rmdir /S /Q node_modules"
\ No newline at end of file
pre_release:
stage: pre_release
script:
- npm run build
artifacts:
paths:
- dist
when: manual
except:
- tags
- master
## ESLint Convention
Make the changes to the code and tests and then commit to your branch. Be sure to follow the commit message conventions.
Commit message summaries must follow this basic format:
```
Tag: Message (fixes #1234)
```
`Tag` should not be confused with git tag.
`Message` should not be confused with git commit message.
The `Tag` is one of the following:
* `Fix` - for a bug fix.
* `Update` - for a backwards-compatible enhancement.
* `Breaking` - for a backwards-incompatible enhancement.
* `Docs` - changes to documentation only.
* `Build` - changes to build process only.
* `New` - implemented a new feature.
* `Upgrade` - for a dependency upgrade.
The message summary should be a one-sentence description of the change. The issue number should be mentioned at the end. * The commit message should say "(fixes #1234)" at the end of the description if it closes out an existing issue (replace 1234 with the issue number). If the commit doesn't completely fix the issue, then use `(refs #1234)` instead of `(fixes #1234)`.
Here are some good commit message summary examples:
```
Build: Update Travis to only test Node 0.10 (refs #734)
Fix: Semi rule incorrectly flagging extra semicolon (fixes #840)
Upgrade: Esprima to 1.2, switch to using Esprima comment attachment (fixes #730)
```
The commit message format is important because these messages are used to create a changelog for each release. The tag and issue number help to create more consistent and useful changelogs.
Based on https://github.com/eslint/eslint.github.io/blob/master/docs/developer-guide/contributing.md#step-2-make-your-changes
[npm-image]: https://badge.fury.io/js/conventional-changelog-eslint.svg
[npm-url]: https://npmjs.org/package/conventional-changelog-eslint
[travis-image]: https://travis-ci.org/stevemao/conventional-changelog-eslint.svg?branch=master
[travis-url]: https://travis-ci.org/stevemao/conventional-changelog-eslint
[daviddm-image]: https://david-dm.org/stevemao/conventional-changelog-eslint.svg?theme=shields.io
[daviddm-url]: https://david-dm.org/stevemao/conventional-changelog-eslint
[coveralls-image]: https://coveralls.io/repos/stevemao/conventional-changelog-eslint/badge.svg
[coveralls-url]: https://coveralls.io/r/stevemao/conventional-changelog-eslint
\ No newline at end of file
# Project Creation Vue Component
This repository contains the CoScInE project creation vue component.
### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
### Commit convention
See [Commit convention](ESLintConvention) for the commit convention.
\ No newline at end of file
This diff is collapsed.
{
"name": "@coscine/project-creation",
"version": "1.5.0",
"version": "1.5.1",
"main": "./dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
......@@ -22,18 +22,18 @@
"dist/*"
],
"dependencies": {
"@coscine/api-connection": "^1.8.0",
"@coscine/app-util": "^1.2.0",
"@types/jquery": "^3.3.32",
"@types/vuelidate": "^0.7.10",
"@coscine/api-connection": "^1.9.0",
"@coscine/app-util": "^1.2.2",
"@types/jquery": "^3.3.33",
"@types/vuelidate": "^0.7.11",
"@voerro/vue-tagsinput": "^2.1.0",
"bootstrap-vue": "^2.4.1",
"bootstrap-vue": "^2.5.0",
"jquery": "^3.4.1",
"vue": "^2.6.11",
"vue-i18n": "^8.15.3",
"vue-i18n": "^8.15.4",
"vue-multiselect": "^2.1.6",
"vuejs-datepicker": "^1.6.2",
"vue-loading-overlay": "^3.2.0",
"vue-loading-overlay": "^3.3.0",
"vue-runtime-helpers": "^1.1.2",
"vuelidate": "^0.7.5"
},
......@@ -42,22 +42,22 @@
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.0.2",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.1",
"@types/chai": "^4.2.9",
"@types/mocha": "^7.0.1",
"@vue/cli-plugin-babel": "^4.2.2",
"@vue/cli-plugin-typescript": "^4.2.2",
"@vue/cli-plugin-unit-mocha": "^4.2.2",
"@vue/cli-service": "^4.2.2",
"@vue/cli-plugin-babel": "^4.2.3",
"@vue/cli-plugin-typescript": "^4.2.3",
"@vue/cli-plugin-unit-mocha": "^4.2.3",
"@vue/cli-service": "^4.2.3",
"@vue/test-utils": "1.0.0-beta.31",
"bili": "^4.8.1",
"chai": "^4.2.0",
"rollup": "^1.31.1",
"rollup": "^1.32.0",
"rollup-plugin-typescript2": "^0.26.0",
"rollup-plugin-vue": "^5.1.6",
"semantic-release": "^17.0.3",
"semantic-release": "^17.0.4",
"@hutson/semantic-delivery-gitlab": "^9.1.0",
"typescript": "^3.7.5",
"typescript": "^3.8.2",
"vue-template-compiler": "^2.6.11"
},
"repository": {
......
param(
$token
)
$remoteUrl = git config --get remote.origin.url
$remoteUrl = $remoteUrl.replace("git@", "")
$remoteUrl = $remoteUrl -replace "https(.*?)@",""
$remoteUrl = $remoteUrl.replace(":", "/")
$remoteUrl = $remoteUrl.replace(".git", ".wiki.git")
$temporaryFolderName = "publishDocsTempFolder"
git clone "https://gitlab-ci-token:$($token)@$($remoteUrl)" $temporaryFolderName
cd $temporaryFolderName
Remove-Item *
cp -r ../docs/* ./
git add .
git commit -m "Docs: Documentation Update"
git push
\ No newline at end of file