Skip to content

Commit

Permalink
chore(release): update documentation and badges
Browse files Browse the repository at this point in the history
  • Loading branch information
flavio-lisboa-brlink committed Oct 25, 2021
1 parent a14d781 commit 0bdfcd4
Show file tree
Hide file tree
Showing 14 changed files with 41 additions and 10 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
7 changes: 6 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
"access": "public",
"baseBranch": "master",
"changelog": [
"@changesets/changelog-github",
{ "repo": "flisboac/datever" }
]
],
"commit": false,
"linked": [],
"updateInternalDependencies": "patch",
"ignore": []
}
2 changes: 1 addition & 1 deletion packages/datever-cli/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"rootDir": "./",
"outDir": "./dist/ts",
"baseUrl": ".",
"types": ["node"],
"types": ["node"]
},
"exclude": [
"node_modules",
Expand Down
2 changes: 1 addition & 1 deletion packages/datever/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
parserOptions: {
project: 'tsconfig.json',
project: './tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
},
Expand Down
1 change: 1 addition & 0 deletions packages/datever/img/badges/badge-branches.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/datever/img/badges/badge-functions.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/datever/img/badges/badge-lines.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions packages/datever/img/badges/badge-statements.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions packages/datever/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,11 @@
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "pnpm run lint -- --fix",
"lint:staged-noargs": "eslint --max-warnings 0",
"format": "prettier \"src/**/*.ts\" \"test/**/*.ts\"",
"format:fix": "pnpm run format -- --write",
"format": "pnpm run format:cli -- --check",
"format:cli": "prettier \"src/**/*.ts\" \"test/**/*.ts\"",
"format:fix": "pnpm run format:cli -- --write",
"format:staged-noargs": "prettier",
"test": "jest",
"test": "jest --passWithNoTests",
"test:cov": "jest --coverage --passWithNoTests",
"test:cov-badges": "jest-coverage-badges --input coverage/coverage-summary.json --output ./img/badges",
"test:dev": "dotenv -- jest",
Expand Down
3 changes: 3 additions & 0 deletions packages/datever/test/unit/lib/index.test.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
describe('tests', () => {
it('should be implemented ASAP!', () => expect(true).toBe(true));
});
3 changes: 2 additions & 1 deletion packages/datever/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
],
"include": [
"src",
"src/**/*.js"
"src/**/*.js",
"test"
]
}
6 changes: 5 additions & 1 deletion packages/datever/tsconfig.main.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
"module": "commonjs",
"outDir": "dist/main",
"types": []
}
},
"include": [
"src",
"src/**/*.js"
]
}
6 changes: 5 additions & 1 deletion packages/datever/tsconfig.module.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
"module": "esnext",
"outDir": "dist/module",
"types": []
}
},
"include": [
"src",
"src/**/*.js"
]
}
3 changes: 2 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"src/*": [
"src/*"
]
}
},
"types": ["jest"]
}
}

0 comments on commit 0bdfcd4

Please sign in to comment.