Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/SkeloGH/weaver into beta…
Browse files Browse the repository at this point in the history
…-51-add
  • Loading branch information
SkeloGH committed Dec 16, 2019
2 parents ab2c2a2 + 2a38c4e commit 95fa03f
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"ignore":[
"**/__tests__/**",
"**/*.test.js",
// "**/__tests__/**",
// "**/*.test.js",
],
"presets": [
[
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.out
*.out.*
.coveralls.yml
.DS_Store
coverage/*
environment.ini
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

Migrate related document objects within and across different databases.

[![codebeat badge](https://codebeat.co/badges/d6101e2d-7c26-4c19-a820-d90a96a5fd54)](https://codebeat.co/projects/github-com-skelogh-weaver-master) [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com) [![Coverage Status](https://coveralls.io/repos/github/SkeloGH/weaver/badge.svg)](https://coveralls.io/github/SkeloGH/weaver) [![CircleCI](https://circleci.com/gh/SkeloGH/weaver.svg?style=svg)](https://circleci.com/gh/SkeloGH/weaver)
[![codebeat badge](https://codebeat.co/badges/d6101e2d-7c26-4c19-a820-d90a96a5fd54)](https://codebeat.co/projects/github-com-skelogh-weaver-master) [![Reviewed by Hound](https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg)](https://houndci.com) [![Coverage Status](https://coveralls.io/repos/github/SkeloGH/weaver/badge.svg?branch=coverage)](https://coveralls.io/github/SkeloGH/weaver?branch=coverage) [![CircleCI](https://circleci.com/gh/SkeloGH/weaver.svg?style=svg)](https://circleci.com/gh/SkeloGH/weaver)

# Context

Expand Down
3 changes: 2 additions & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ module.exports = {

// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
transformIgnorePatterns: [
'/__tests__/',
// '/__tests__/',
// 'src/__tests__/config/index.js',
],

// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
Expand Down
33 changes: 33 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@
"description": "A mongoDB relational collection field mapping, visualizing and importing tool",
"main": "-",
"scripts": {
"build": "npm run build-cli && npm run build-app && npm run test",
"build-cli": "babel bin/ -d dist/bin",
"build-app": "babel src/ -d dist/src",
"build": "npm run build-cli && npm run build-app && npm run test-coverage",
"build-cli": "babel bin/ -d dist/bin --ignore \"bin/**/*.test.js\"",
"build-app": "babel src/ -d dist/src --ignore \"src/__tests__/*\"",
"app": "DEBUG=Weaver* node --harmony src/index.js",
"clean": "rimraf node_modules",
"dev": "DEBUG=* nodemon --config ./nodemon.json ./src/index.js",
"test": "jest",
"test-coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test-debug": "DEBUG=Weaver* jest --detectOpenHandles"
},
"bin": {
Expand Down Expand Up @@ -61,6 +62,7 @@
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-preset-minify": "^0.5.1",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
Expand Down

0 comments on commit 95fa03f

Please sign in to comment.