-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: change building system to rollup, compiling linter into a binary
BREAKING CHANGE: - Renamed `bin/dclint.js` to `bin/dclint.cjs`. - Docker entrypoint changed to use the compiled binary over the Node.js implementation.
- Loading branch information
1 parent
cafb4d0
commit c563a93
Showing
75 changed files
with
4,164 additions
and
879 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# IDEs and editors | ||
/.idea | ||
.project | ||
.classpath | ||
.c9/ | ||
*.launch | ||
.settings/ | ||
*.sublime-workspace | ||
|
||
# IDE - VSCode | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
|
||
# OS | ||
.DS_Store | ||
|
||
# Git | ||
.git/ | ||
.gitignore | ||
|
||
# Github | ||
.github/ | ||
|
||
# Docker | ||
Dockerfile | ||
|
||
# Documentation | ||
/documentation | ||
/docs | ||
|
||
# Dependencies | ||
/node_modules | ||
|
||
# Compiled output and runtime | ||
/dist | ||
/bin | ||
/pkg | ||
/.tsimp | ||
/sea-prep.blob | ||
/dclint | ||
|
||
# Tests | ||
/coverage | ||
|
||
# Other | ||
Makefile |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: "Install Node.js dependencies with Cache" | ||
description: "Sets up Node.js, caches dependencies, and installs them" | ||
inputs: | ||
node-version: | ||
description: "Node.js version" | ||
required: true | ||
default: "20.18.0" | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Set up Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ inputs.node-version }} | ||
|
||
- name: Cache Node.js modules | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.npm | ||
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node- | ||
- name: Install dependencies | ||
run: npm ci | ||
shell: bash |
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 |
---|---|---|
|
@@ -28,6 +28,13 @@ | |
|
||
# Build | ||
/dist | ||
/bin | ||
/pkg | ||
|
||
# Runtime | ||
/.tsimp | ||
|
||
# Generated files | ||
/sea-prep.blob | ||
/sea | ||
/.VERSION |
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
Oops, something went wrong.