-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: ✨ separate express-sequelize-crud in 2 distinct packages
- Loading branch information
1 parent
4d80bee
commit 08f79ae
Showing
14 changed files
with
2,175 additions
and
3,453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
yarn check-types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
12 | ||
16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Changes are documented in the [Github releases page](https://github.com/lalalilo/express-sequelize-crud/releases) | ||
Changes are documented in the [Github releases page](https://github.com/lalalilo/express-crud-router/releases) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
{ | ||
"name": "express-sequelize-crud", | ||
"name": "express-crud-router", | ||
"version": "3.5.1", | ||
"description": "React Admin backend with Express and Sequelize. 1 line per resource!", | ||
"description": "React Admin backend for Express. 1 line per resource! ORM agnostic.", | ||
"main": "./lib/index.js", | ||
"types": "./lib/src/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/lalalilo/express-sequelize-crud.git" | ||
"url": "git+https://github.com/lalalilo/express-crud-router.git" | ||
}, | ||
"author": "nicgirault <[email protected]>", | ||
"keywords": [ | ||
"react-admin", | ||
"sequelize", | ||
"crud", | ||
"express" | ||
], | ||
"tags": [ | ||
"react-admin", | ||
"sequelize", | ||
"crud", | ||
"express" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/lalalilo/express-sequelize-crud/issues" | ||
"url": "https://github.com/lalalilo/express-crud-router/issues" | ||
}, | ||
"homepage": "https://github.com/lalalilo/express-sequelize-crud#readme", | ||
"homepage": "https://github.com/lalalilo/express-crud-router#readme", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "rimraf lib && babel src -d lib --extensions '.ts' && tsc", | ||
|
@@ -33,41 +33,28 @@ | |
"files": [ | ||
"lib/**/*" | ||
], | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn check-types" | ||
} | ||
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.7.0", | ||
"@babel/core": "^7.7.2", | ||
"@babel/node": "^7.7.0", | ||
"@babel/plugin-proposal-class-properties": "^7.7.0", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.6.2", | ||
"@babel/preset-env": "^7.7.1", | ||
"@babel/preset-typescript": "^7.7.2", | ||
"@types/bluebird": "^3.5.29", | ||
"@types/express": "^4.17.2", | ||
"@types/jest": "^26.0.23", | ||
"@types/jest": "^27.4.0", | ||
"@types/lodash": "^4.14.149", | ||
"@types/mime-types": "^2.1.0", | ||
"@types/node": "^15.9.0", | ||
"@types/validator": "^13.1.3", | ||
"@types/node": "^17.0.8", | ||
"codecov": "^3.6.1", | ||
"express": "^4.17.1", | ||
"husky": "^6.0.0", | ||
"husky": "^7.0.4", | ||
"jest": "^27.0.4", | ||
"node-fetch": "^2.6.0", | ||
"react": "^17.0.2", | ||
"rimraf": "^3.0.0", | ||
"semantic-release": "^17.0.4", | ||
"sequelize": "^6.6.2", | ||
"sqlite3": "^5.0.2", | ||
"semantic-release": "^18.0.1", | ||
"typescript": "^4.3.2" | ||
}, | ||
"peerDependencies": { | ||
"express": "^4.0.0", | ||
"sequelize": "^5.0.0 || ^6.0.0" | ||
"express": "^4.0.0" | ||
}, | ||
"jest": { | ||
"setupFiles": [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.