diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index eeef674..65be9a0 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -10,10 +10,10 @@ We accept contributions via Pull Requests on [Github](https://github.com/radial- - **Consider our release cycle** - We try to follow [SemVer](https://semver.org/). Randomly breaking public APIs is not an option. -- **Create feature branches** - Don't ask us to pull from your master branch. +- **Create feature branches** - Don't ask us to pull from your main branch. - **One pull request per feature** - If you want to do more than one thing, send multiple pull requests. - **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](https://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. -**Happy coding**! +**Happy coding**! \ No newline at end of file diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f12b86a..fc79ce7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ on: push: branches: - - master + - main workflow_dispatch: jobs: diff --git a/README.md b/README.md index 928fa33..657222f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ License - Code Coverage + Code Coverage

diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 3923a10..27009f5 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -43,7 +43,7 @@ And in your app: ``` -Depending on your build tool of choice you may have to setup the appropriate loaders or plugins. Checkout the [examples](https://github.com/radial-color-picker/vue-color-picker/tree/master/examples) folder. There's an example with Vite and CSS. If you're using tools such as Vite, Vue CLI, or Poi you don't have to do anything else - these tools come preconfigured and support CSS import out of the box. +Depending on your build tool of choice you may have to setup the appropriate loaders or plugins. Checkout the [examples](https://github.com/radial-color-picker/vue-color-picker/tree/main/examples) folder. There's an example with Vite and CSS. If you're using tools such as Vite, Vue CLI, or Poi you don't have to do anything else - these tools come preconfigured and support CSS import out of the box. ## Using the component globally diff --git a/examples/simple/README.md b/examples/simple/README.md index 30bdaa9..cd33a14 100644 --- a/examples/simple/README.md +++ b/examples/simple/README.md @@ -7,7 +7,7 @@ This is a basic example of how to use `vue-color-picker` with the UMD build (use Download the example [or clone the whole project](https://github.com/radial-color-picker/vue-color-picker.git): ```bash -curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/master | tar -xz --strip=2 vue-color-picker-master/examples/simple +curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/main | tar -xz --strip=2 vue-color-picker-main/examples/simple cd simple ``` @@ -21,4 +21,4 @@ http-server -o # with superstatic (starts the server on port 3474) superstatic -``` +``` \ No newline at end of file diff --git a/examples/with-config/README.md b/examples/with-config/README.md index d5fa335..17229d8 100644 --- a/examples/with-config/README.md +++ b/examples/with-config/README.md @@ -7,7 +7,7 @@ Example shows how to further configure `vue-color-picker`. It's scaffolded with Download the example [or clone the whole project](https://github.com/radial-color-picker/vue-color-picker.git): ```bash -curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/master | tar -xz --strip=2 vue-color-picker-master/examples/with-config +curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/main | tar -xz --strip=2 vue-color-picker-main/examples/with-config cd with-config ``` @@ -31,4 +31,4 @@ npm run build ### Customize configuration -See [Configuration Reference](https://vitejs.dev/guide/). +See [Configuration Reference](https://vitejs.dev/guide/). \ No newline at end of file diff --git a/examples/with-nuxt/README.md b/examples/with-nuxt/README.md index d1c2bd7..d3844a7 100644 --- a/examples/with-nuxt/README.md +++ b/examples/with-nuxt/README.md @@ -9,7 +9,7 @@ Example shows how to setup `vue-color-picker` with [Nuxt.js](https://v3.nuxtjs.o Download the example [or clone the whole project](https://github.com/radial-color-picker/vue-color-picker.git): ```bash -curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/master | tar -xz --strip=2 vue-color-picker-master/examples/with-nuxt +curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/main | tar -xz --strip=2 vue-color-picker-main/examples/with-nuxt cd with-nuxt ``` diff --git a/examples/with-uncontrolled-component/README.md b/examples/with-uncontrolled-component/README.md index a8bda6f..a6d0b36 100644 --- a/examples/with-uncontrolled-component/README.md +++ b/examples/with-uncontrolled-component/README.md @@ -11,7 +11,7 @@ Example shows how to only listen for changes of the color and skip `hue` and `@i Download the example [or clone the whole project](https://github.com/radial-color-picker/vue-color-picker.git): ```bash -curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/master | tar -xz --strip=2 vue-color-picker-master/examples/with-uncontrolled-component +curl https://codeload.github.com/radial-color-picker/vue-color-picker/tar.gz/main | tar -xz --strip=2 vue-color-picker-main/examples/with-uncontrolled-component cd with-uncontrolled-component ``` diff --git a/scripts/deploy-docs.sh b/scripts/deploy-docs.sh index 2a6c2a8..934a5f3 100644 --- a/scripts/deploy-docs.sh +++ b/scripts/deploy-docs.sh @@ -17,6 +17,6 @@ fi git commit -m 'deploy' -git push -f git@github.com:radial-color-picker/vue-color-picker.git master:gh-pages +git push -f git@github.com:radial-color-picker/vue-color-picker.git main:gh-pages cd -