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

Compare commits

...

3 Commits

Author SHA1 Message Date
dependabot[bot]
0df30d698e chore(deps-dev): bump ts-jest from 29.0.3 to 29.3.2
Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 29.0.3 to 29.3.2.
- [Release notes](https://github.com/kulshekhar/ts-jest/releases)
- [Changelog](https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/kulshekhar/ts-jest/compare/v29.0.3...v29.3.2)

---
updated-dependencies:
- dependency-name: ts-jest
  dependency-version: 29.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-05-01 08:17:05 +00:00
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
4 changed files with 127 additions and 793 deletions

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

908
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": "^5.0.10",
"ts-jest": "29.0.3",
"ts-jest": "29.3.2",
"typescript": "^4.3.2"
},
"dependencies": {
"@sasjs/utils": "3.5.0",
"@sasjs/utils": "3.5.2",
"ignore": "5.2.4"
}
}