Skip to content

Commit

Permalink
build: normalize repo with apex-tests-list
Browse files Browse the repository at this point in the history
  • Loading branch information
mcarvin8 committed Oct 7, 2024
1 parent 9926ab3 commit aaf1725
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1 @@
* text=auto eol=lf
* text=auto eol=lf
14 changes: 7 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ tmp/
# use yarn by default, so ignore npm
package-lock.json

.sfdx/

# never checkin npm config
.npmrc

Expand Down Expand Up @@ -32,6 +30,11 @@ docs
*.sig
package.json.bak.


npm-shrinkwrap.json
oclif.manifest.json
oclif.lock

# -- CLEAN ALL
*.tsbuildinfo
.eslintcache
Expand All @@ -44,10 +47,7 @@ node_modules
# os specific files
.DS_Store
.idea

oclif.manifest.json

oclif.lock

.sfdx
stderr*.txt
stdout*.txt
.yarn/install-state.gz
8 changes: 4 additions & 4 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"check-coverage": true,
"lines": 75,
"statements": 75,
"functions": 75,
"branches": 75
"lines": 90,
"statements": 90,
"functions": 90,
"branches": 90
}
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
1 change: 1 addition & 0 deletions bin/run.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env node

// eslint-disable-next-line node/shebang
async function main() {
const { execute } = await import('@oclif/core');
await execute({ dir: import.meta.url });
Expand Down
4 changes: 0 additions & 4 deletions commitlint.config.cjs

This file was deleted.

1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export default { extends: ['@commitlint/config-conventional'] };
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -207,5 +207,6 @@
},
"bugs": {
"url": "https://github.com/mcarvin8/apex-code-coverage-transformer/issues"
}
},
"packageManager": "[email protected]"
}
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"extends": "@salesforce/dev-config/tsconfig-strict-esm",
"compilerOptions": {
"outDir": "lib",
"module": "Node16",
"rootDir": "src"
},
"include": ["./src/**/*.ts"],
Expand Down

0 comments on commit aaf1725

Please sign in to comment.