Skip to content

Commit

Permalink
Merge pull request #3 from iadvize/NO-TICKET-init-store
Browse files Browse the repository at this point in the history
Init @iadvize/store
  • Loading branch information
guillaumewuip authored Jul 3, 2020
2 parents 5841f0e + 7c0671c commit f2d14ed
Show file tree
Hide file tree
Showing 14 changed files with 7,942 additions and 3 deletions.
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

0 comments on commit f2d14ed

Please sign in to comment.