diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4873a01..476f57a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: cache: 'npm' - name: Install dependencies - run: npm ci + run: npm i - name: Build run: npm run build @@ -31,4 +31,4 @@ jobs: if: github.ref == 'refs/heads/main' with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs + publish_dir: ./dist diff --git a/.gitignore b/.gitignore index 179b568..4378d70 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ .idea .cache +dist node_modules diff --git a/docs/index.html b/docs/index.html deleted file mode 100644 index 4b1c401..0000000 --- a/docs/index.html +++ /dev/null @@ -1,4 +0,0 @@ -
Master native HTML capabilities and progressive enhancement patterns. This guide demonstrates how leveraging built-in browser features reduces complexity, improves performance, and creates more maintainable codebases.
Build Progress: 0%
Compilation Progress
Indeterminate Operation (processing)
Dynamic Progress: 0%
Native HTML elements represent years of browser engineering, accessibility research, and web standards evolution. They provide robust functionality with minimal implementation overhead and maximum compatibility.
The Progressive Enhancement Approach:
Leverage browser engines rather than reimplementing their functionality. Your codebase will be more maintainable, your users will have better experiences.