Skip to content

Commit

Permalink
3.0.0 Release (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarParra authored Sep 15, 2024
1 parent fd523cc commit d9a53ab
Show file tree
Hide file tree
Showing 332 changed files with 51,294 additions and 15,777 deletions.
12 changes: 0 additions & 12 deletions .eslintrc.js

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: ["master", "develop"]
pull_request:
branches: ["main", "master", "develop"]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: "20"
cache: "npm"
- run: npm ci
- run: npm run build --if-present
- run: npm test
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ build
npm-debug.log
.env
.DS_Store
/lib
TODO.md
/coverage
/.idea/
/dist/
/lib/
6 changes: 3 additions & 3 deletions .idea/apexdocs.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2020 Cesar Parra
Copyright (c) 2024 Cesar Parra

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
839 changes: 248 additions & 591 deletions README.md

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions __mocks__/chalk.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
// __mocks__/chalk.js
module.exports = new Proxy(
{},
{
get: function (target, property) {
return property === 'default' ? this : (text) => text;
},
green: function (text) {
return text;
},
},
);
6 changes: 6 additions & 0 deletions __mocks__/log-update.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// This is a basic mock that can be expanded based on your needs.
// It mocks the main function of log-update to just log to console or do nothing.
module.exports = {
// Mock the main function to just log the text or do nothing
default: function () {},
};
13 changes: 0 additions & 13 deletions apexdocs.config.ts

This file was deleted.

1 change: 0 additions & 1 deletion docs/README.md

This file was deleted.

Loading

0 comments on commit d9a53ab

Please sign in to comment.