Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Init @iadvize/store #3

Merged
merged 2 commits into from
Jul 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
* @guillaumewuip
* @guillaumewuip @iadvize/front

package.json @guillaumewuip @iadvizeponey
package-lock.json @guillaumewuip @iadvizeponey
package.json @guillaumewuip @iadvize/front @iadvizeponey
package-lock.json @guillaumewuip @iadvize/front @iadvizeponey
5 changes: 5 additions & 0 deletions packages/store/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
dist
esm
docs
coverage
6 changes: 6 additions & 0 deletions packages/store/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"extends": [
"@iadvize-oss/eslint-config/light-typescript",
"@iadvize-oss/eslint-config-jest"
]
}
1 change: 1 addition & 0 deletions packages/store/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.eslintcache
13 changes: 13 additions & 0 deletions packages/store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Changed

- Init lib

4 changes: 4 additions & 0 deletions packages/store/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Hello - 1
=====

This is a test package
23 changes: 23 additions & 0 deletions packages/store/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
module.exports = {
roots: ['<rootDir>'],
testEnvironment: 'jsdom',
testRegex: ['.*\\.test\\.[jt]sx?$'],
transform: {
'^.+\\.tsx?$': 'ts-jest',
'^.+\\.jsx?$': 'ts-jest',
},
globals: {
'ts-jest': {
isolatedModules: true,
},
},
clearMocks: true,
coverageThreshold: {
global: {
branches: 80,
functions: 80,
lines: 80,
statements: 80,
},
},
};
Loading