Skip to content

Commit

Permalink
chore(deps): update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
bluelovers committed Jun 19, 2020
1 parent d515cef commit 9006155
Show file tree
Hide file tree
Showing 24 changed files with 600 additions and 137 deletions.
4 changes: 2 additions & 2 deletions packages/@yarn-tool/check-pkg-bin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"@bluelovers/string-natural-compare": "^1.0.7",
"@ts-type/package-dts": "^1.0.21",
"@bluelovers/string-natural-compare": "^1.1.1",
"@ts-type/package-dts": "^1.0.26",
"@yarn-tool/get-pkg-bin": "^1.0.14",
"@yarn-tool/shebang": "^1.0.3",
"@yarn-tool/table": "^1.0.9",
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/find-deps/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"array-hyper-unique": "^1.1.7",
"ws-pkg-list": "^1.0.27"
},
Expand Down
30 changes: 29 additions & 1 deletion packages/@yarn-tool/find-root/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ bin/**/*.d.ts
/packages/*/tests/temp*
**/node_modules
*.tgz
/packages/@yarn-tool/find-root/tsconfig.json.tpl
/tsconfig.json.tpl
/.eslintrc.json.tpl
!tsconfig.json
!.eslintrc.json
Expand Down Expand Up @@ -68,3 +68,31 @@ coverage
!.gitlab
.git

*.tsbuildinfo
tsconfig.esm.json.tpl

.browserslistrc
.nvmrc

/.eslintignore
/package.d.ts
.nycrc
.mocharc.yml
#jest.config.js
node_modules/.cache
.yarn-integrity
jest.config.d.ts
jest.config.js.map
/report.*.json
*.js.map
/now.json
.nyc_output
.coverage-cache
.reify-cache
*.spec.d.ts
*.spec.js
.nowignore
*/**/.github
!/.github
!npm-shrinkwrap.json
*.stat
24 changes: 23 additions & 1 deletion packages/@yarn-tool/find-root/.npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ package-lock.json
test
.github
.gitkeep
/packages/@yarn-tool/find-root/.npmignore
/.*
tests
/~*
__test__
Expand Down Expand Up @@ -57,3 +57,25 @@ webpack.*.config.ts
karma.conf.js
/_config.yml
intellij-style-guide.xml
jest.config.js
*.tsbuildinfo
tsconfig.*.json
tsconfig.esm.json.tpl
/package.d.ts
.mocharc.yml
jest.config.js
jest.config.*
/report.*.json
now.json
/Makefile
*.spec.d.ts
*.spec.js
*.spec.ts
*.spec.tsx
__mocks__
__tests__
__snapshots__
*.snap
npm-shrinkwrap.json
/example/
*.stat
12 changes: 12 additions & 0 deletions packages/@yarn-tool/find-root/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# README.md

<%= description %>

## install

```bash
yarn add <%= name %>
yarn-tool add <%= name %>
yt add <%= name %>
```

19 changes: 19 additions & 0 deletions packages/@yarn-tool/find-root/jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
clearMocks: true,
moduleFileExtensions: ['ts', 'js'],
testEnvironment: 'node',
//testMatch: ['**/*.test.ts', '**/*.spec.ts'],
testRegex: ['\\.(tests?|spec)\\.(ts|tsx)$'],
//testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest',
},
verbose: true,
/**
* if didn't set `coverageProvider` to `v8`
* with `collectCoverage` `true`, nodejs debug point maybe will fail
*/
coverageProvider: 'v8',
collectCoverage: false,

}
17 changes: 15 additions & 2 deletions packages/@yarn-tool/find-root/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,37 @@
"name": "@yarn-tool/find-root",
"version": "1.0.21",
"description": "",
"keywords": [],
"homepage": "https://github.com/bluelovers/ws-yarn-workspaces/tree/master/packages/@yarn-tool/find-root#readme",
"bugs": {
"url": "https://github.com/bluelovers/ws-yarn-workspaces/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluelovers/ws-yarn-workspaces.git"
},
"license": "ISC",
"author": "",
"author": "bluelovers",
"main": "index.js",
"scripts": {
"coverage": "npx nyc npm run test",
"lint": "npx eslint **/*.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run ncu && npm run sort-package-json",
"prepublishOnly:check-bin": "ynpx --quiet @yarn-tool/check-pkg-bin",
"prepublishOnly:update": "yarn run ncu && yarn run sort-package-json",
"prepublishOnly_": "yarn run prepublishOnly:check-bin && yarn run test",
"postpublish_": "git commit -m \"publish new version\" .",
"ncu": "npx yarn-tool ncu -u",
"sort-package-json": "npx yarn-tool sort"
},
"dependencies": {
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"find-yarn-workspace-root2": "^1.2.16",
"pkg-dir": "^4.2.0",
"upath2": "^3.0.6"
},
"devDependencies": {},
"publishConfig": {
"access": "public"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/get-pkg-bin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"@yarn-tool/resolve-package": "^1.0.12",
"upath2": "^3.0.6"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/ncu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"@yarn-tool/semver-diff": "^1.0.5",
"@yarn-tool/table": "^1.0.9",
"@yarn-tool/yarnlock": "^1.0.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/pack-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"dependencies": {
"@lerna/get-packed": "^3.16.0",
"@lerna/log-packed": "^3.16.0",
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"npm-packlist": "^2.1.2",
"tar": "^6.0.2"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/resolve-package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"upath2": "^3.0.6"
},
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/run-script-lifecycle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
},
"dependencies": {
"@npmcli/run-script": "^1.3.1",
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"@yarn-tool/script-lifecycle": "^1.0.2"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"@yarn-tool/semver-diff": "^1.0.5",
"cli-table3": "^0.6.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/@yarn-tool/yarnlock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"tsc:esm": "tsc -p tsconfig.esm.json"
},
"dependencies": {
"@ts-type/package-dts": "^1.0.21",
"@ts-type/package-dts": "^1.0.26",
"@yarn-tool/find-root": "^1.0.21",
"@yarn-tool/table": "^1.0.9",
"@yarnpkg/lockfile": "^1.1.0",
Expand Down
148 changes: 92 additions & 56 deletions packages/find-yarn-workspace-root2/.gitignore
Original file line number Diff line number Diff line change
@@ -1,62 +1,98 @@
# Logs
logs
.idea
node_modules
~ci.list.txt
~ci.log.txt
~ci.errors.txt
*.stackdump
*.bak
*.old
package-lock.json
test/**/*.js
test/**/*.d.ts
test/*.js
test/*.d.ts
test/temp*
test/**/*.map
tests/**/*.js
tests/**/*.d.ts
tests/*.js
tests/*.d.ts
tests/temp*
tests/**/*.map
bin/*.d.ts
bin/**/*.d.ts
/packages/*/bin/*.d.ts
/packages/*/test/**/*.js
/packages/*/test/**/*.d.ts
/packages/*/test/*.js
/packages/*/test/*.d.ts
/packages/*/test/temp*
/packages/*/tests/**/*.js
/packages/*/tests/**/*.d.ts
/packages/*/tests/*.js
/packages/*/tests/*.d.ts
/packages/*/tests/temp*
**/node_modules
*.tgz
/tsconfig.json.tpl
/.eslintrc.json.tpl
!tsconfig.json
!.eslintrc.json
yarn-error.log
*.log
.git
yarn.lock
.env.local
.env.*.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.vue.js
*.vue.d.ts
*.vue.js.map
vue.config.d.ts
vue.config.js.map
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

coverage
/*.tpl
/.browserslistrc
/.nvmrc
!.forestry
!.vuepress
!.github
!.gitee
!.gitlab
.git

*.tsbuildinfo
tsconfig.esm.json.tpl

.browserslistrc
.nvmrc

/.eslintignore
/package.d.ts
.nycrc
.mocharc.yml
#jest.config.js
node_modules/.cache
.yarn-integrity
jest.config.d.ts
jest.config.js.map
/report.*.json
*.js.map
/now.json
.nyc_output
.coverage-cache
.reify-cache
*.spec.d.ts
*.spec.js
.nowignore
*/**/.github
!/.github
!npm-shrinkwrap.json
*.stat

0 comments on commit 9006155

Please sign in to comment.