-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from ItsCurstin/develop
Develop
- Loading branch information
Showing
6 changed files
with
108 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,13 @@ | ||
# 1.0.0 (2024-11-15) | ||
|
||
|
||
### Features | ||
|
||
* initial project setup ([12e7c1e](https://github.com/ItsCurstin/captioneer/commit/12e7c1ef40449255bd48168dabd131c26a5c5930)) | ||
|
||
# 1.0.0 (2024-11-15) | ||
|
||
|
||
### Features | ||
|
||
* initial project setup ([12e7c1e](https://github.com/ItsCurstin/captioneer/commit/12e7c1ef40449255bd48168dabd131c26a5c5930)) | ||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
### Added | ||
- GitHub Actions workflows for CI/CD | ||
- CodeQL security analysis | ||
- Comprehensive documentation | ||
- Test HTTP requests with Axios | ||
- Add Proxy Support | ||
# 1.0.0 (2024-11-15) | ||
|
||
## [1.0.0] - 2024-01-24 | ||
### Added | ||
- Core Captioneer class for fetching YouTube transcripts | ||
- Multi-language support for captions | ||
- Type-safe error handling system | ||
- ESM and CommonJS module support | ||
- Full TypeScript types and declarations | ||
- Biome for code formatting and linting | ||
- Vitest test suite with coverage | ||
- MIT License | ||
### Features | ||
|
||
### Security | ||
- Input validation for video IDs | ||
- Rate limiting detection | ||
- Error handling for network issues | ||
* initial project | ||
setup ([12e7c1e](https://github.com/ItsCurstin/captioneer/commit/12e7c1ef40449255bd48168dabd131c26a5c5930)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
// tsup.config.ts | ||
|
||
import { defineConfig } from 'tsup'; | ||
|
||
export default defineConfig({ | ||
entry: ['src/index.ts'], | ||
format: ['cjs', 'esm'], | ||
dts: true, | ||
splitting: false, | ||
sourcemap: true, | ||
sourcemap: process.env.NODE_ENV !== 'production', | ||
clean: true, | ||
minify: true, | ||
minify: process.env.NODE_ENV === 'production', | ||
treeshake: true, | ||
external: Object.keys(require('./package.json').dependencies || {}), | ||
outDir: 'dist', | ||
outExtension: ({ format }) => ({ | ||
js: format === 'esm' ? '.mjs' : '.js', | ||
}), | ||
banner: { | ||
js: `/*! * ${require('./package.json').name} v${require('./package.json').version} * Released under the MIT License. */`, | ||
}, | ||
}); |