diff --git a/.depcheckrc b/.depcheckrc new file mode 100644 index 0000000..bf58a03 --- /dev/null +++ b/.depcheckrc @@ -0,0 +1,3 @@ +ignores: [ +] +skip-missing: true diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..c3a25be --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: http://EditorConfig.org + +root = true + +[*] +charset = utf-8 +end_of_line = lf +indent_size = 2 +indent_style = space +insert_final_newline = true +quote_type = single +trim_trailing_whitespace = true diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..85488aa --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,9 @@ +## Details + +### What have you changed? + +- + +### Why are you making these changes? + +- diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 0000000..20497f1 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,39 @@ +name: CodeQL Analysis + +on: + push: + branches: [main] + pull_request: + branches: [main] + schedule: + - cron: '0 9 * * 1' + +jobs: + analyse: + name: Analyse + runs-on: ubuntu-latest + + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + matrix: + language: ['javascript'] + + steps: + - name: Checkout Repository + uses: actions/checkout@v3 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v2 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..810a60f --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# build +lib/ + +# dependencies +node_modules + +# tests +coverage/ + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# misc +.DS_Store +.idea +.iml +.log +.vscode diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..fe40be0 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,3 @@ +# Contributing + +For contributions, simply raise a Pull Request with your changes. All contributions are welcome! diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..4c9b851 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Patrick Taylor + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 4aafc5a..c506b79 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ -# themed-progress-plugin +# 💚 Themed Progress Plugin + +[![CodeQL Analysis](https://github.com/01taylop/themed-progress-plugin/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/01taylop/themed-progress-plugin/actions/workflows/codeql-analysis.yml) + A webpack plugin featuring an emoji-themed loading bar for a fun and aesthetic build process. diff --git a/package.json b/package.json new file mode 100644 index 0000000..a098769 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "themed-progress-plugin", + "description": "A webpack plugin featuring an emoji-themed loading bar for a fun and aesthetic build process.", + "repository": { + "type": "git", + "url": "https://github.com/01taylop/themed-progress-plugin" + }, + "version": "0.0.1", + "type": "module", + "scripts": { + }, + "dependencies": { + }, + "devDependencies": { + }, + "author": "Patrick Taylor ", + "keywords": [ + "progress", + "progress-plugin", + "themed-progress-plugin", + "webpack", + "webpack-plugin" + ] +}