Skip to content
Snippets Groups Projects
Select Git revision
  • dd623973362e89bdd8b0f346a8dbaabf7614a586
  • dev default
  • 61-feature-add-optional-backwards-mapping-for-consistency-with-older-version
  • 61-feature-add-optional-backwards-mapping-for-consistency-with-older-version-2
  • main protected
  • 11-test-fix-tests-to-handle-licensed-data-resources-from-trud-snd-omop
  • general
  • pypi
  • old-main
  • v0.0.3
10 results

phen.py

Blame
    • mjbonifa's avatar
      dd623973
      fixed the version from commit, supports an empty repo or a repo that's been... · dd623973
      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.
      dd623973
      History
      fixed the version from commit, supports an empty repo or a repo that's been...
      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.
    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')