Skip to content

Commit

Permalink
feat: initial implementation of the new architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
piotr-oles committed Apr 17, 2020
1 parent 6a67890 commit 9439a09
Show file tree
Hide file tree
Showing 147 changed files with 6,336 additions and 5,895 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added .github/.DS_Store
Binary file not shown.
5 changes: 1 addition & 4 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
{
"singleQuote": true,
"semi": true,
"tabWidth": 2,
"useTabs": false,
"printWidth": 80
"printWidth": 100
}
96 changes: 44 additions & 52 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && tsc --version && tsc --project \"./src\"",
"build": "rimraf lib && tsc --version && tsc",
"lint": "eslint ./src ./test --ext .ts --ext .js --ignore-pattern '/test/fixtures/**' --ignore-pattern '/test/tmp/**'",
"test": "yarn build && yarn test:unit && yarn test:integration",
"test:unit": "jest unit",
Expand All @@ -56,74 +56,66 @@
]
},
"lint-staged": {
"linters": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"git add"
]
}
"*.ts": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"babel-code-frame": "^6.22.0",
"@babel/code-frame": "^7.8.3",
"chalk": "^2.4.1",
"micromatch": "^3.1.10",
"graceful-fs": "^4.2.3",
"minimatch": "^3.0.4",
"schema-utils": "1.0.0",
"semver": "^5.6.0",
"tapable": "^1.0.0",
"tslib": "^1.10.0",
"worker-rpc": "^0.1.0"
"tapable": "^1.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^7.5.0",
"@types/babel-code-frame": "^6.20.1",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.134",
"@types/micromatch": "^3.1.0",
"@commitlint/config-conventional": "^8.3.4",
"@mdx-js/mdx": "^1.5.8",
"@types/babel__code-frame": "^7.0.1",
"@types/eslint": "^6.8.0",
"@types/graceful-fs": "^4.1.3",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.149",
"@types/minimatch": "^3.0.1",
"@types/mock-fs": "^4.10.0",
"@types/mock-require": "^2.0.0",
"@types/node": "^11.0.0",
"@types/rimraf": "^2.0.2",
"@types/semver": "^5.5.0",
"@types/webpack": "^4.4.19",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"commitlint": "^7.5.2",
"copy-dir": "^0.4.0",
"css-loader": "0.28.11",
"@types/node": "^13.11.1",
"@types/rimraf": "^3.0.0",
"@types/schema-utils": "1.0.0",
"@types/semver": "^7.1.0",
"@types/webpack": "^4.41.11",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"commitlint": "^8.3.5",
"copy-dir": "^1.2.0",
"css-loader": "3.5.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"git-cz": "^3.0.1",
"husky": "^1.1.4",
"jest": "^24.7.1",
"lint-staged": "^8.0.5",
"lodash": "^4.17.11",
"mock-fs": "^4.3.0",
"mock-require": "^3.0.2",
"nativescript-vue-template-compiler": "^2.4.0",
"prettier": "^1.14.3",
"rimraf": "^3.0.0",
"ts-jest": "^24.2.0",
"ts-loader": "^5.0.0",
"typescript": "^3.0.1",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"git-cz": "^4.3.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"lodash": "^4.17.15",
"mock-fs": "^4.11.0",
"mock-require": "^3.0.3",
"nativescript-vue-template-compiler": "^2.5.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"unixify": "^1.0.0",
"vue": "^2.5.16",
"vue-class-component": "^6.1.1",
"vue-loader": "^15.2.4",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.0.0"
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.42.1"
},
"engines": {
"node": ">=6.11.5",
Expand Down
103 changes: 0 additions & 103 deletions src/ApiIncrementalChecker.ts

This file was deleted.

Loading

0 comments on commit 9439a09

Please sign in to comment.