1
0
mirror of https://github.com/sasjs/lint.git synced 2025-12-10 09:34:34 +00:00

Compare commits

...

12 Commits

Author SHA1 Message Date
Allan Bowe
6172b3a641 Merge pull request #224 from sasjs/rimraf-and-bump
fix: bump utils, fix ci rimraf
2025-02-27 12:02:48 +00:00
47811e56b5 fix: bump utils, fix ci rimraf 2025-02-27 12:59:06 +01:00
Allan Bowe
490cd43373 Merge pull request #220 from sasjs/rev
Rev
2025-02-14 14:38:34 +00:00
bd8d2b9561 chore: package-lock.json 2025-02-14 14:46:13 +01:00
5b9269adf8 chore: package-lock.json 2025-02-14 14:43:39 +01:00
Allan Bowe
2f0551afc2 Merge pull request #218 from glM26/main
Fix: Update @sasjs/utils to newest version
2025-02-14 12:14:10 +00:00
Allan Bowe
86465c3cf1 chore: dependabot limit 2025-02-14 12:13:00 +00:00
Allan Bowe
faedb5add9 Merge pull request #219 from sasjs/rev
chore: removing reviewers from lottery
2025-02-14 09:26:10 +00:00
Allan Bowe
6d8f7549a2 chore: removing reviewers from lottery
## Issue

Link any related issue(s) in this section.

## Intent

What this PR intends to achieve.

## Implementation

What code changes have been made to achieve the intent.

## Checks

- [ ] Code is formatted correctly (`npm run lint:fix`).
- [ ] Any new functionality has been unit tested.
- [ ] All unit tests are passing (`npm test`).
- [ ] All CI checks are green.
- [ ] sasjslint-schema.json is updated with any new / changed functionality
- [ ] JSDoc comments have been added or updated.
- [ ] Reviewer is assigned.
2025-02-14 09:25:08 +00:00
Allan Bowe
1815f73110 chore: removing reviewers from lottery 2025-02-14 09:17:54 +00:00
glM26
2ec507f844 fix: update target in tsconfig.json to es6
Some features in newer versions of dependencies require at least es6
2025-02-14 08:10:51 +01:00
glM26
2de78a9c6d fix: update @sasjs/utils to version 3.5.0 2025-02-14 08:09:58 +01:00
8 changed files with 2726 additions and 1964 deletions

View File

@@ -4,4 +4,4 @@ updates:
directory: '/'
schedule:
interval: monthly
open-pull-requests-limit: 10
open-pull-requests-limit: 3

View File

@@ -2,8 +2,6 @@ groups:
- name: SASjs Devs # name of the group
reviewers: 1 # how many reviewers do you want to assign?
usernames: # github usernames of the reviewers
- krishna-acondy
- YuryShkoda
- saadjutt01
- medjedovicm
- allanbowe

View File

@@ -8,6 +8,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: uesteibar/reviewer-lottery@v1
- uses: uesteibar/reviewer-lottery@v3
with:
repo-token: ${{ secrets.GH_TOKEN }}
repo-token: ${{ secrets.GH_TOKEN }}

View File

@@ -28,6 +28,8 @@ jobs:
run: npm run lint
- name: Run Unit Tests
run: npm test
- name: Install rimraf
run: npm i -g rimraf
- name: Build Package
run: npm run package:lib
env:

View File

@@ -18,6 +18,8 @@ jobs:
run: npm ci
- name: Check Code Style
run: npm run lint
- name: Install rimraf
run: npm i -g rimraf
- name: Build Project
run: npm run build
- name: Semantic Release

4668
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@
"description": "Linting and formatting for SAS code",
"scripts": {
"test": "jest --coverage",
"build": "rimraf build && tsc",
"build": "npx rimraf build && tsc",
"preinstall": "node checkNodeVersion",
"prebuild": "node checkNodeVersion",
"prepublishOnly": "cp -r ./build/* . && rm -rf ./build && rm -rf ./src && rm tsconfig.json",
@@ -41,14 +41,12 @@
"devDependencies": {
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"all-contributors-cli": "6.24.0",
"jest": "29.3.1",
"rimraf": "^3.0.2",
"ts-jest": "29.0.3",
"typescript": "^4.3.2"
},
"dependencies": {
"@sasjs/utils": "2.52.0",
"@sasjs/utils": "3.5.2",
"ignore": "5.2.4"
}
}

View File

@@ -5,7 +5,7 @@
"DOM",
"ES2019.String"
],
"target": "es5",
"target": "es6",
"module": "commonjs",
"downlevelIteration": true,
"moduleResolution": "node",
@@ -23,4 +23,4 @@
"**/*.spec.ts",
"**/example.ts"
]
}
}