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
  • Sprint/2022-01
  • dev
  • gitkeep
  • master
  • v1.0.0
  • v1.1.0
6 results

Target

Select target project
  • coscine/frontend/apps/x-vue-template
1 result
Select Git revision
  • Sprint/2022-01
  • dev
  • gitkeep
  • master
  • v1.0.0
  • v1.1.0
6 results
Show changes
# ts-template
# vue-template
## Project setup
```
......
# project-template
# vue-template
## Project setup
```
npm install
```
### Compiles and hot-reloads for development
```
npm run serve
```
### Compiles and minifies for production
```
npm run build
```
### Run your tests
```
npm run test
```
### Lints and fixes files
```
npm run lint
```
### Run your unit tests
```
npm run test:unit
```
### 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": "ts-vue-template",
"version": "1.0.0",
"version": "1.1.0",
"private": true,
"directories": {
"doc": "docs"
......
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
module.exports = {
filenameHashing: false
}
\ No newline at end of file