Skip to content

Commit

Permalink
Merge 2c24196 into 7ec2ebf
Browse files Browse the repository at this point in the history
  • Loading branch information
ognen committed Mar 29, 2018
2 parents 7ec2ebf + 2c24196 commit 9580ad2
Show file tree
Hide file tree
Showing 12 changed files with 2,478 additions and 436 deletions.
43 changes: 21 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "skele-container",
"private": true,
"description":
"Skele is an architectural framework that assists with building data-driven apps with React or React Native.",
"description": "Skele is an architectural framework that assists with building data-driven apps with React or React Native.",
"repository": {
"type": "git",
"url": "git+https://github.com/netceteragroup/skele.git"
Expand All @@ -20,26 +19,19 @@
"coverage": "jest --coverage",
"coverage-report": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint .",
"es5":
"yarn run es5:classic && yarn run es5:config && yarn run es5:components",
"es5:classic":
"babel -q packages/classic/src --out-dir packages/classic/dist/es5",
"es5:config":
"babel -q packages/config/src --out-dir packages/config/dist/es5",
"es5:components":
"babel -q packages/components/src --out-dir packages/components/dist/es5",
"clean":
"yarn run clean:classic && yarn run clean:config && yarn run clean:components",
"es5": "yarn run es5:classic && yarn run es5:config && yarn run es5:components",
"es5:classic": "babel -q packages/classic/src --out-dir packages/classic/dist/es5",
"es5:config": "babel -q packages/config/src --out-dir packages/config/dist/es5",
"es5:components": "babel -q packages/components/src --out-dir packages/components/dist/es5",
"clean": "yarn run clean:classic && yarn run clean:config && yarn run clean:components",
"clean:classic": "del-cli packages/classic/dist",
"clean:config": "del-cli packages/config/dist",
"clean:components": "del-cli packages/components/dist",
"build": "yarn run clean && yarn run test && yarn run lint && yarn run es5",
"release:test-token":
"test -n \"$CONVENTIONAL_GITHUB_RELEASER_TOKEN\" || (echo 'Setup your github autho token first: https://github.com/conventional-changelog/conventional-github-releaser#cli' && exit 1)",
"release:test-token": "test -n \"$CONVENTIONAL_GITHUB_RELEASER_TOKEN\" || (echo 'Setup your github autho token first: https://github.com/conventional-changelog/conventional-github-releaser#cli' && exit 1)",
"release:publish": "lerna publish",
"release:github": "conventional-github-releaser -p angular",
"release":
"yarn run build && yarn run release:test-token && yarn run release:publish && yarn run release:github"
"release": "yarn run build && yarn run release:test-token && yarn run release:publish && yarn run release:github"
},
"engines": {
"node": ">= 7.4.0",
Expand All @@ -50,11 +42,11 @@
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.1.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^19.0.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-react-native": "^1.9.1",
"conventional-github-releaser": "^1.1.11",
"conventional-github-releaser": "^2.0.0",
"coveralls": "^2.11.15",
"del-cli": "^0.2.1",
"enzyme": "^3.0.0",
Expand Down Expand Up @@ -86,13 +78,18 @@
},
"jest": {
"setupTestFrameworkScriptFile": "./scripts/test-setup.js",
"modulePathIgnorePatterns": ["/dist/es5/"],
"modulePathIgnorePatterns": [
"/dist/es5/"
],
"roots": [
"<rootDir>/packages/classic",
"<rootDir>/packages/config",
"<rootDir>/packages/components"
"<rootDir>/packages/components",
"<rootDir>/packages/system"
],
"testMatch": [
"**/__tests__/**/*.js"
],
"testMatch": ["**/__tests__/**/*.js"],
"collectCoverageFrom": [
"**/*.js",
"!**/__tests__/**",
Expand All @@ -101,5 +98,7 @@
"!**/dist/es5/**"
]
},
"workspaces": ["packages/*"]
"workspaces": [
"packages/*"
]
}
Loading

0 comments on commit 9580ad2

Please sign in to comment.