Creating an annotated tag in Git is simple. The easiest way is to specify -a when you run the tag command:
$ git tag -a v1.4 -m "my version 1.4"
$ git tag
v0.1
v1.3
v1.4| Remove-Item -Recurse -Force node_modules, package-lock.json ; npm install |
| npx npm-check-updates -u && npm i |
| import { useState, useEffect, useMemo } from 'react' | |
| type FetchOptions = RequestInit | |
| type FetchResult<T> = { | |
| data: T | null | |
| loading: boolean | |
| error: string | null | |
| } |
| import type { Config } from 'tailwindcss' | |
| import typographyPlugin from '@tailwindcss/typography' | |
| const config: Config = { | |
| content: [ | |
| './src/pages/**/*.{js,ts,jsx,tsx,mdx}', | |
| './src/components/**/*.{js,ts,jsx,tsx,mdx}', | |
| './src/app/**/*.{js,ts,jsx,tsx,mdx}', | |
| ], | |
| theme: { |
| using global::GPVBlazor.Services.Interfaces; | |
| namespace GPVBlazor.Services.Configuration | |
| { | |
| public static class ServiceConfiguration | |
| { | |
| public static void Configure(IServiceCollection services) | |
| { | |
| services.AddRazorComponents() | |
| .AddInteractiveServerComponents() | |
| .AddInteractiveWebAssemblyComponents(); |
| import { Octokit } from 'octokit' | |
| import { input } from '@inquirer/prompts' | |
| import { writeFileSync, mkdirSync } from 'fs' | |
| import path from 'path' | |
| import { fileURLToPath } from 'url' | |
| const __filename = fileURLToPath(import.meta.url) | |
| const __dirname = path.dirname(__filename) | |
| // Prompt for GitHub token with validation |
| # Prompt the user for the full path of the folder to delete | |
| $folderPath = Read-Host "Enter the full path of the folder you want to delete" | |
| # Check if the entered path is a valid folder | |
| if (Test-Path -Path $folderPath -PathType Container) { | |
| # Ask for confirmation from the user | |
| $confirm = Read-Host "Are you sure you want to delete this folder and all its contents? (Y/N)" | |
| if ($confirm -eq "Y") { | |
| try { | |
| Remove-Item -Path $folderPath -Recurse -Force |
| import { Octokit } from 'octokit' | |
| import { input } from '@inquirer/prompts' | |
| import { writeFileSync, mkdirSync } from 'fs' | |
| import path from 'path' | |
| import { fileURLToPath } from 'url' | |
| const __filename = fileURLToPath(import.meta.url) | |
| const __dirname = path.dirname(__filename) | |
| // Prompt for GitHub token with validation |
| import { readdirSync, readFileSync } from "fs"; | |
| import { parseBuffer } from "music-metadata"; | |
| import { getLyrics } from "genius-lyrics-api"; | |
| import ffmetadata from "ffmetadata"; | |
| import readline from "readline"; | |
| import ora from "ora"; | |
| /** | |
| * Retrieves an array of file names representing the FLAC files in the specified directory. | |
| * Only files with the extensions ".flac" or ".mp3" will be included in the result. |