Something went wrong on our end
Select Git revision
-
mjbonifa authored
fixed the version from commit, supports an empty repo or a repo that's been created with an initial readme. works for local repo too. Set default branch to main, it's what we assume. Also checks if there's changes to the repo and if not then does not update versions. Does not support pulling and merging if there's collaboration or someone changes a remote. That will need to be sorted by the user using git commands themselves.
mjbonifa authoredfixed the version from commit, supports an empty repo or a repo that's been created with an initial readme. works for local repo too. Set default branch to main, it's what we assume. Also checks if there's changes to the repo and if not then does not update versions. Does not support pulling and merging if there's collaboration or someone changes a remote. That will need to be sorted by the user using git commands themselves.
main.js 166 B
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import './style.css'
import App from './App.vue'
createApp(App).use(createPinia()).mount('#app')