author
int64
4.98k
943k
date
stringdate
2017-04-15 16:45:02
2022-02-25 15:32:15
timezone
int64
-46,800
39.6k
hash
stringlengths
40
40
message
stringlengths
8
468
mods
listlengths
1
16
language
stringclasses
9 values
license
stringclasses
2 values
repo
stringclasses
119 values
original_message
stringlengths
12
491
is_CCS
int64
1
1
commit_type
stringclasses
129 values
commit_scope
stringlengths
1
44
679,913
24.03.2018 23:02:53
0
f3f0bec14eefb89f0acc18431fbb5bfae38316fd
feat(pointfree): update word/wordU, add append(), tuple(), join()
[ { "change_type": "MODIFY", "diff": "@@ -103,8 +103,6 @@ pf.run(\nCustom words can be defined via the `word()` and `wordU()` functions. The latter uses `runU()` to execute the word and returns unwrapped value(s) from result.\n-*Important*: Unwrapped words CANNOT be used as part of larger stack programs. Thei...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(pointfree): update word/wordU, add append(), tuple(), join()
1
feat
pointfree
217,880
24.03.2018 23:32:27
-3,600
2b5b68a87e91d55d5e792ac08ed013d97c6a10e8
feat: Made 'Reset progression' more user-friendly
[ { "change_type": "MODIFY", "diff": "-<h2 mat-dialog-title>{{'Confirmation'| translate}}</h2>\n+<h2 mat-dialog-title>{{'Do you really want to reset the list?'| translate}}</h2>\n<mat-dialog-actions>\n<button mat-raised-button [mat-dialog-close]=\"true\" color=\"primary\">{{'Yes'| translate}}</button>\n<butto...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: Made 'Reset progression' more user-friendly
1
feat
null
679,913
25.03.2018 04:16:08
-3,600
79b4ce32cfc3a85140cb8fa2f5fac45366dd4b2c
feat(pointfree): update all words to return stack
[ { "change_type": "MODIFY", "diff": "@@ -8,7 +8,7 @@ const SAFE = true;\nexport type Stack = any[];\nexport type StackEnv = any;\n-export type StackFn = (stack: Stack, env?: StackEnv) => void;\n+export type StackFn = (stack: Stack, env?: StackEnv) => Stack;\nexport type StackProgram = any[];\nexport type Sta...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(pointfree): update all words to return stack
1
feat
pointfree
311,007
25.03.2018 04:34:03
-32,400
d63f3f82ca1a337c2ea0dc45807577f1a586e031
fix(generate): add path index.js
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,7 @@ export async function importNgSchematics(projectDir: string): Promise<typeof Ang\n}\nexport async function importNgSchematicsTools(projectDir: string): Promise<typeof AngularDevKitSchematicsToolsType> {\n- const p = resolve('@angular-devkit/schematics/tool...
TypeScript
MIT License
ionic-team/ionic-cli
fix(generate): add path index.js (#3030)
1
fix
generate
679,913
26.03.2018 03:16:57
-3,600
1a01f9a0b521980e6379d18fc426f4636eaf1339
fix(pointfree): wordU(), add tests
[ { "change_type": "MODIFY", "diff": "@@ -659,9 +659,9 @@ export const wordU = (prog: StackProgram, n = 1, env?: StackEnv, mergeEnv = fals\nconst w: StackFn = compile(prog);\nreturn env ?\nmergeEnv ?\n- (ctx: StackContext) => unwrap([w([ctx[0], { ...ctx[1], ...env }]), true], n) :\n- (ctx: StackContext) => un...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(pointfree): wordU(), add tests
1
fix
pointfree
679,913
26.03.2018 03:18:11
-3,600
2b7e99b9f527c14fe54e51a5e1bf23813178338a
fix(api): illegalState() creates IllegalStateError
[ { "change_type": "MODIFY", "diff": "@@ -31,7 +31,7 @@ export function illegalArgs(msg?: any) {\n}\nexport function illegalState(msg?: any) {\n- throw new IllegalArgumentError(msg);\n+ throw new IllegalStateError(msg);\n}\nexport function unsupported(msg?: any) {\n", "new_path": "packages/api/src/error.t...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(api): illegalState() creates IllegalStateError
1
fix
api
679,913
26.03.2018 03:25:49
-3,600
50cc65fee6f80f7b616f9d668806a67a1d47715e
build: update yarn scripts / add missing nyc dev dep
[ { "change_type": "MODIFY", "diff": "\"license\": \"Apache-2.0\",\n\"scripts\": {\n\"build\": \"yarn run clean && tsc --declaration\",\n- \"clean\": \"rm -rf *.js *.d.ts build doc\",\n+ \"clean\": \"rm -rf *.js *.d.ts .nyc_output build doc\",\n+ \"cover\": \"yarn test && nyc report --reporter=lcov\",\n\"doc\...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update yarn scripts / add missing nyc dev dep
1
build
null
807,849
26.03.2018 11:38:54
25,200
74d1415a938c8db80a68809313f1ef84ea999253
test(init-fixture): process.chdir() after creating temp directory
[ { "change_type": "MODIFY", "diff": "@@ -28,6 +28,14 @@ describe(\"core-command\", () => {\ntestDir = await initFixture(\"basic\");\n});\n+ afterEach(() => {\n+ // ensure common CWD is restored when individual tests\n+ // initialize their own fixture (which changes CWD)\n+ if (process.cwd() !== testDir) {\n+...
JavaScript
MIT License
lerna/lerna
test(init-fixture): process.chdir() after creating temp directory
1
test
init-fixture
807,849
26.03.2018 12:21:32
25,200
58644ff2eb899030807e7d28f1fd620d1bf9c627
refactor(project): Expose default package glob as static property
[ { "change_type": "MODIFY", "diff": "@@ -11,8 +11,6 @@ const writeJsonFile = require(\"write-json-file\");\nconst ValidationError = require(\"@lerna/validation-error\");\nconst Package = require(\"@lerna/package\");\n-const DEFAULT_PACKAGE_GLOB = \"packages/*\";\n-\nclass Project {\nconstructor(cwd) {\nconst...
JavaScript
MIT License
lerna/lerna
refactor(project): Expose default package glob as static property
1
refactor
project
807,849
26.03.2018 12:22:42
25,200
67daff4ea567ee2624d8e08183bd6d2748c1d2e3
test(project): Remove load-json-file stub
[ { "change_type": "MODIFY", "diff": "\"use strict\";\n+const fs = require(\"fs-extra\");\nconst path = require(\"path\");\n-// mocked or stubbed modules\n-const loadJsonFile = require(\"load-json-file\");\n-\n// helpers\nconst initFixture = require(\"@lerna-test/init-fixture\")(__dirname);\n@@ -143,12 +141,6...
JavaScript
MIT License
lerna/lerna
test(project): Remove load-json-file stub
1
test
project
807,849
26.03.2018 12:24:26
25,200
ebe26c5795403d85357e667079376064fc9e6c11
refactor(project): Cache lazy properties with Object.defineProperty()
[ { "change_type": "MODIFY", "diff": "@@ -88,33 +88,40 @@ class Project {\n}\nget packageJson() {\n- if (!this._packageJson) {\n+ let packageJson;\n+\ntry {\n- this._packageJson = loadJsonFile.sync(this.packageJsonLocation);\n+ packageJson = loadJsonFile.sync(this.packageJsonLocation);\n- if (!this._packageJs...
JavaScript
MIT License
lerna/lerna
refactor(project): Cache lazy properties with Object.defineProperty()
1
refactor
project
724,000
26.03.2018 13:31:09
-3,600
0c8345d16047beb204292b8d40a8bf262c449678
build: 1.0.0-beta.13
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@vue/test-utils\",\n- \"version\": \"1.0.0-beta.12\",\n+ \"version\": \"1.0.0-beta.13\",\n\"description\": \"Utilities for testing Vue components.\",\n\"main\": \"dist/vue-test-utils.js\",\n\"types\": \"types/index.d.ts\",\n", "new_path": "packages/test...
JavaScript
MIT License
vuejs/vue-test-utils
build: 1.0.0-beta.13
1
build
null
807,849
26.03.2018 15:55:10
25,200
6201d0b73a735372f093b43b40fd02ed0ae0e24e
refactor(validation-error): Pass along remaining arguments to logger
[ { "change_type": "MODIFY", "diff": "const log = require(\"npmlog\");\nclass ValidationError extends Error {\n- constructor(prefix, message) {\n+ constructor(prefix, message, ...rest) {\nsuper(message);\nthis.name = \"ValidationError\";\nthis.prefix = prefix;\nlog.resume(); // might be paused, noop otherwise...
JavaScript
MIT License
lerna/lerna
refactor(validation-error): Pass along remaining arguments to logger
1
refactor
validation-error
807,849
26.03.2018 16:09:16
25,200
9de2362ee80a6495165403c7911e5bf481e6e8cc
refactor(project): Move default into transform, clear up error handling
[ { "change_type": "MODIFY", "diff": "@@ -18,7 +18,18 @@ class Project {\nrc: \"lerna.json\",\nrcStrictJson: true,\nsync: true,\n- transform: obj => {\n+ transform(obj) {\n+ // cosmiconfig returns null when nothing is found\n+ if (!obj) {\n+ return {\n+ // No need to distinguish between missing and empty,\n+ ...
JavaScript
MIT License
lerna/lerna
refactor(project): Move default into transform, clear up error handling
1
refactor
project
807,849
26.03.2018 16:16:49
25,200
d4b2df288cbb739344f709b7339a11166bfa1822
test(project): Rename instance variable
[ { "change_type": "MODIFY", "diff": "@@ -26,41 +26,41 @@ describe(\"Project\", () => {\ndescribe(\".rootPath\", () => {\nit(\"should be added to the instance\", () => {\n- const repo = new Project(testDir);\n- expect(repo.rootPath).toBe(testDir);\n+ const project = new Project(testDir);\n+ expect(project.roo...
JavaScript
MIT License
lerna/lerna
test(project): Rename instance variable
1
test
project
573,227
26.03.2018 16:45:23
25,200
4a2e5ccdb27a15f5b3b6d4e9c98f4e751e97c7de
docs(server): document ignoreTrailingSlash
[ { "change_type": "MODIFY", "diff": "@@ -73,6 +73,8 @@ routes and handlers for incoming requests.\nciphers; however these can all be specified on httpsServerOptions.\n- `options.strictRouting` **[Boolean](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean)** If set, Restify\nw...
JavaScript
MIT License
restify/node-restify
docs(server): document ignoreTrailingSlash (#1633)
1
docs
server
573,227
26.03.2018 16:52:12
25,200
a97c15027b58f7b73e0a6e30a23f0fe7a760413e
docs(guides): path must start with / in 7.x
[ { "change_type": "MODIFY", "diff": "@@ -31,6 +31,14 @@ Strict routing is the new default.\nUse `ignoreTrailingSlash: true` server option if you don't want to differentiate\nthem from each other.\n+### Path must to start with `/`\n+\n+In restify 7.x path must start with a `/`.\n+For example `server.get('foo'...
JavaScript
MIT License
restify/node-restify
docs(guides): path must start with / in 7.x (#1630)
1
docs
guides
807,849
26.03.2018 17:01:42
25,200
4ac80623af7a7c067d7a6bc8f3f09cb208709f01
docs(project): Add a brief description and somewhat longer nesting example
[ { "change_type": "MODIFY", "diff": "# `@lerna/project`\n-> description TODO\n+> Lerna project configuration\n-## Usage\n+## Configuration Resolution\n-TODO\n+Lerna's file-based configuration is located in `lerna.json` or the `lerna` property of `package.json`.\n+Wherever this configuration is found is consi...
JavaScript
MIT License
lerna/lerna
docs(project): Add a brief description and somewhat longer nesting example
1
docs
project
217,922
26.03.2018 22:48:30
-7,200
fa84dca115a43485aae1566f58cbc4decbe75e8e
chore: fix issue made by with some translations
[ { "change_type": "MODIFY", "diff": "-<h2 mat-dialog-title>{{'Do you really want to reset the list?'| translate}}</h2>\n+<h2 mat-dialog-title>{{ (message || 'Confirmation') | translate}}</h2>\n<mat-dialog-actions>\n<button mat-raised-button [mat-dialog-close]=\"true\" color=\"primary\">{{'Yes'| translate}}</...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: fix issue made by #297 with some translations
1
chore
null
311,007
27.03.2018 02:40:18
-32,400
0f937b4ad7ae365169b6ec9e376425db1c3be553
chore(lab): ignore generated lerna files after failure
[ { "change_type": "MODIFY", "diff": "@@ -79,6 +79,7 @@ Each `packages/*` folder represents a package on npm.\n1. TypeScript source files are in `packages/**/src`.\n1. Good luck! :muscle: Please open an issue if you have questions or something\nis unclear.\n+1. If node-sass error occurs, you should add permis...
TypeScript
MIT License
ionic-team/ionic-cli
chore(lab): ignore generated lerna files after failure (#3028)
1
chore
lab
311,007
27.03.2018 02:41:01
-32,400
b5bc37ea976022735e52e12c880484b7cd231707
fix(generate): change default styleext scss
[ { "change_type": "MODIFY", "diff": "\"styleext\": {\n\"type\": \"string\",\n\"description\": \"The file extension of the style file for the page\",\n- \"default\": \"css\"\n+ \"default\": \"scss\"\n},\n\"spec\": {\n\"type\": \"boolean\",\n", "new_path": "packages/@ionic/schematics-angular/page/schema.js...
TypeScript
MIT License
ionic-team/ionic-cli
fix(generate): change default styleext scss (#3032)
1
fix
generate
730,429
27.03.2018 09:45:57
14,400
7a3508ddfdff8f04aec712c5001a2c663874946e
chore(Jenkinsfile): add app id to secrets
[ { "change_type": "MODIFY", "diff": "@@ -107,6 +107,7 @@ ansiColor('xterm') {\nwithCredentials([\nstring(credentialsId: 'ddfd04fb-e00a-4df0-9250-9a7cb37bce0e', variable: 'CISCOSPARK_CLIENT_SECRET'),\nusernamePassword(credentialsId: 'SAUCE_LABS_VALIDATED_MERGE_CREDENTIALS', passwordVariable: 'SAUCE_ACCESS_KEY...
JavaScript
MIT License
webex/react-widgets
chore(Jenkinsfile): add app id to secrets
1
chore
Jenkinsfile
815,746
27.03.2018 11:03:51
-10,800
0dd11c485583195e1a03fa56eb42d1bddbb570a3
feat: allow group by expression closes
[ { "change_type": "MODIFY", "diff": "@@ -131,7 +131,7 @@ map: {\n| [clearable] | `boolean` | `true` | no | Allow to clear selected value. Default `true`|\n| clearAllText | `string` | `Clear all` | no | Set custom text for clear all icon title |\n| dropdownPosition | `bottom`,`top`,`auto` | `bottom` | no | Se...
TypeScript
MIT License
ng-select/ng-select
feat: allow group by expression (#385) closes #375
1
feat
null
815,746
27.03.2018 11:04:15
-10,800
37f13ab6b16e7fce7559ddc8b53aaea6f7e6836b
chore(release): 0.31.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.31.0\"></a>\n+# [0.31.0](https://github.com/ng-select/ng-select/compare/v0.30.1...v...
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.31.0
1
chore
release
815,800
27.03.2018 16:07:44
-7,200
8bcfe56ea8e05b346f6c0ec6e1bb6ac2c408922c
fix: incorrect border on multiple default theme closes
[ { "change_type": "MODIFY", "diff": "@@ -96,9 +96,11 @@ $color-selected: #f5faff;\nborder: 1px solid #e3e3e3;\n}\n.ng-value-label {\n+ display: inline-block;\npadding: 2px 5px 2px 1px;\n}\n.ng-value-icon {\n+ display: inline-block;\npadding: 3px 5px;\n&:hover {\nbackground-color: #d8eafd;\n", "new_path":...
TypeScript
MIT License
ng-select/ng-select
fix: incorrect border on multiple default theme (#354) (#386) closes #354
1
fix
null
217,922
27.03.2018 16:39:51
-7,200
52c59f1a0cf4ad696c8984e5eb3f1909fe3b63f3
feat: compact view for sidebar menu closes
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"teamcraft\",\n- \"version\": \"3.4.2\",\n+ \"version\": \"3.4.3\",\n\"lockfileVersion\": 1,\n\"requires\": true,\n\"dependencies\": {\n", "new_path": "package-lock.json", "old_path": "package-lock.json" }, { "change_type": "MODIFY", "dif...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: compact view for sidebar menu closes #294
1
feat
null
815,746
27.03.2018 17:08:14
-10,800
fa06772ee427e37c4fc06c7883f5d5db871978ef
chore(release): 0.31.1
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.31.1\"></a>\n+## [0.31.1](https://github.com/ng-select/ng-select/compare/v0.31.0......
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.31.1
1
chore
release
679,913
27.03.2018 19:24:48
-3,600
ba0bcc219f119e7add1e305373409d94349c6e3b
refactor(pointfree): rename core words & change case runU => runu map => maptos mapN => mapnth dropIf/dupIf => dropif/dupif condM => cases bitAnd/Or/Not => bitand/or/not isPos/Neg/Null/Zero => ispos/neg/null/zero execQ => execq storeAt => storeat pushEnv => pushenv loadKey/storeKey => loadkey/storekey
[ { "change_type": "MODIFY", "diff": "+bench\nbuild\ncoverage\ndev\n", "new_path": "packages/pointfree/.npmignore", "old_path": "packages/pointfree/.npmignore" }, { "change_type": "MODIFY", "diff": "@@ -43,7 +43,7 @@ export const run = (prog: StackProc, ctx: StackContext = [[], [], {}]): S...
TypeScript
Apache License 2.0
thi-ng/umbrella
refactor(pointfree): rename core words & change case - runU => runu - map => maptos - mapN => mapnth - dropIf/dupIf => dropif/dupif - condM => cases - bitAnd/Or/Not => bitand/or/not - isPos/Neg/Null/Zero => ispos/neg/null/zero - execQ => execq - storeAt => storeat - pushEnv => pushenv - loadKey/storeKey => loadkey/sto...
1
refactor
pointfree
217,922
27.03.2018 21:05:32
-7,200
441844558c79f66196e7ea3c45b003ba7bfe7cb7
chore: tooltips for compact sidebar
[ { "change_type": "MODIFY", "diff": "<mat-icon>keyboard_arrow_right</mat-icon>\n</button>\n</mat-list-item>\n- <mat-list-item routerLink=\"/home\" (click)=\"mobile ? sidenav.close() : null\">\n+ <mat-list-item routerLink=\"/home\" (click)=\"mobile ? sidenav.close() : null\"\n+ matTooltipPosition=\"right\"\n+...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: tooltips for compact sidebar
1
chore
null
217,922
27.03.2018 22:02:48
-7,200
ea6efb438646448ecb0c2a21ea5099806c2b9f3b
chore: wrong tooltip for recipes
[ { "change_type": "MODIFY", "diff": "</mat-list-item>\n<mat-list-item routerLink=\"/recipes\" (click)=\"mobile ? sidenav.close() : null\"\nmatTooltipPosition=\"right\"\n- matTooltip=\"{{'CUSTOM_LINKS.Title' | translate}}\"\n+ matTooltip=\"{{'Recipes' | translate}}\"\n[matTooltipDisabled]=\"!settings.compactS...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: wrong tooltip for recipes
1
chore
null
217,922
27.03.2018 22:15:35
-7,200
e91ba363122b08000c58cb9c719843beed4e742e
fix: "working on it" avatar no longer wrong after some manipulations
[ { "change_type": "MODIFY", "diff": "@@ -306,7 +306,7 @@ export class ItemComponent extends ComponentWithSubscriptions implements OnInit,\nthis.updateHasBook();\nif (this.item.workingOnIt !== undefined) {\nthis.userService.get(this.item.workingOnIt)\n- .mergeMap(user => this.dataService.getCharacter(user.lod...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: "working on it" avatar no longer wrong after some manipulations
1
fix
null
311,007
28.03.2018 03:16:13
-32,400
cc3c2d95bd331e1953192234b66f8557d1b83e0c
feat(info): add version to info
[ { "change_type": "MODIFY", "diff": "@@ -23,12 +23,14 @@ export class Project extends BaseProject {\nconst [\nionicAngularVersion,\nionicCoreVersion,\n+ ionicSchematicsAngularVersion,\nangularCLIVersion,\nangularDevKitCoreVersion,\nangularDevKitSchematicsVersion,\n] = await Promise.all([\nthis.getFrameworkVe...
TypeScript
MIT License
ionic-team/ionic-cli
feat(info): add @ionic/schematics-angular version to info (#3042)
1
feat
info
821,196
28.03.2018 10:23:29
25,200
beb4b4ee29528602305a4e9f61de062c3d80fb85
fix: remove commitlint from this project
[ { "change_type": "MODIFY", "diff": "@@ -15,8 +15,7 @@ jobs:\n- v4-{{checksum \".circleci/config.yml\"}}\n- v4\n- run: .circleci/greenkeeper\n- - run: yarn add -D mocha-junit-reporter@1 @commitlint/cli@6 @commitlint/config-conventional@6\n- - run: yarn exec commitlint -- -x @commitlint/config-conventional --...
TypeScript
MIT License
oclif/oclif
fix: remove commitlint from this project (#87)
1
fix
null
217,922
28.03.2018 10:48:21
-7,200
6630587eb51d5e526a248a03d1fc306ba9c609e8
chore: remove sentry as it's spamming for minor issues
[ { "change_type": "MODIFY", "diff": "\"jwt-decode\": \"^2.2.0\",\n\"ng-push\": \"^0.2.1\",\n\"ngx-clipboard\": \"10.0.0\",\n- \"raven-js\": \"^3.24.0\",\n\"rxjs\": \"^5.4.3\",\n\"semver\": \"^5.4.1\",\n\"web-animations-js\": \"^2.3.1\",\n", "new_path": "package.json", "old_path": "package.json" }, ...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: remove sentry as it's spamming for minor issues
1
chore
null
217,922
28.03.2018 10:54:27
-7,200
6ae437ba811a734b844f921847c6bfde553dd60a
chore: remove sentry from user.service
[ { "change_type": "MODIFY", "diff": "@@ -9,7 +9,6 @@ import {NgSerializerService} from '@kaiu/ng-serializer';\nimport {FirebaseStorage} from './storage/firebase/firebase-storage';\nimport {AngularFireDatabase} from 'angularfire2/database';\nimport {DiffService} from './diff/diff.service';\n-import * as Raven...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
chore: remove sentry from user.service
1
chore
null
807,849
28.03.2018 12:38:11
25,200
fd84013f7e671d36cec66674e17c705464911998
feat(child-process): Allow exec() opts.stdio override
[ { "change_type": "MODIFY", "diff": "@@ -12,8 +12,7 @@ const colorWheel = [\"cyan\", \"magenta\", \"blue\", \"yellow\", \"green\", \"red\"];\nconst NUM_COLORS = colorWheel.length;\nfunction exec(command, args, opts) {\n- const options = Object.assign({}, opts);\n- options.stdio = \"pipe\"; // node default\n+...
JavaScript
MIT License
lerna/lerna
feat(child-process): Allow exec() opts.stdio override
1
feat
child-process
807,849
28.03.2018 12:45:01
25,200
4ba5e74a1835ead7e15e1f38974b84ee236e92f3
feat(npm-install): Allow opts.stdio override
[ { "change_type": "MODIFY", "diff": "@@ -39,10 +39,30 @@ describe(\"npm-install\", () => {\nexpect(ChildProcessUtilities.exec).lastCalledWith(\n\"yarn\",\n[\"install\", \"--mutex\", \"file:foo\", \"--non-interactive\", \"--no-optional\"],\n- { cwd: location }\n+ { cwd: location, stdio: \"pipe\" }\n);\n});\n+...
JavaScript
MIT License
lerna/lerna
feat(npm-install): Allow opts.stdio override
1
feat
npm-install
807,849
28.03.2018 12:48:59
25,200
fd8c39141fb779688df4ea18c9d666e27dcfbefd
feat(bootstrap): Inherit stdio during root-only install
[ { "change_type": "MODIFY", "diff": "@@ -86,12 +86,12 @@ class BootstrapCommand extends Command {\n}\nexecute() {\n- this.logger.info(\"\", `Bootstrapping ${this.filteredPackages.length} packages`);\n-\nif (this.options.useWorkspaces) {\nreturn this.installRootPackageOnly();\n}\n+ this.logger.info(\"\", `Boo...
JavaScript
MIT License
lerna/lerna
feat(bootstrap): Inherit stdio during root-only install
1
feat
bootstrap
807,849
28.03.2018 13:04:30
25,200
d8a8f0386b92175b6052ac6cfe35c238e3653834
feat(bootstrap): Short-circuit when local file: specifiers are detected in the root
[ { "change_type": "ADD", "diff": "+node_modules\n", "new_path": "commands/bootstrap/__tests__/__fixtures__/relative-file-specs/.gitignore", "old_path": null }, { "change_type": "ADD", "diff": "+registry = https://registry.npmjs.org/\n\\ No newline at end of file\n", "new_path": "comma...
JavaScript
MIT License
lerna/lerna
feat(bootstrap): Short-circuit when local file: specifiers are detected in the root
1
feat
bootstrap
807,849
28.03.2018 13:40:47
25,200
6abae766f8146286b2574aac0cd72f1b20bdf9b1
fix(publish): Write temporary annotations once, not repeatedly
[ { "change_type": "MODIFY", "diff": "@@ -201,7 +201,7 @@ class PublishCommand extends Command {\npkg.updateLocalDependency(resolved, depVersion, this.savePrefix);\n}\n- return writePkg(pkg.manifestLocation, pkg.toJSON());\n+ // writing changes to disk handled in annotateGitHead()\n});\n}\n", "new_path": ...
JavaScript
MIT License
lerna/lerna
fix(publish): Write temporary annotations once, not repeatedly
1
fix
publish
724,178
28.03.2018 14:45:55
-7,200
92c00ee99e7a982ec3cfaa02d3ebff2fa77bea1c
docs: fix evenOrOdd test description
[ { "change_type": "MODIFY", "diff": "@@ -265,7 +265,7 @@ describe('Modules.vue', () => {\nThere are two approaches to testing a Vuex store. The first approach is to unit test the getters, mutations, and actions separately. The second approach is to create a store and test against that. We'll look at both app...
JavaScript
MIT License
vuejs/vue-test-utils
docs: fix evenOrOdd test description (#492)
1
docs
null
807,849
28.03.2018 15:19:32
25,200
b73e19dfb072dc62ccdbc7e6b67704b1bdf08586
feat: Support `optionalDependencies` Fixes
[ { "change_type": "MODIFY", "diff": "@@ -287,7 +287,12 @@ class BootstrapCommand extends Command {\n);\n// collect root dependency versions\n- const mergedRootDeps = Object.assign({}, rootPkg.devDependencies, rootPkg.dependencies);\n+ const mergedRootDeps = Object.assign(\n+ {},\n+ rootPkg.optionalDependenci...
JavaScript
MIT License
lerna/lerna
feat: Support `optionalDependencies` Fixes #121
1
feat
null
807,849
28.03.2018 15:46:21
25,200
0574e85ca124d12566b297d5314d436413f955de
refactor(publish): Minor tweaks
[ { "change_type": "MODIFY", "diff": "@@ -579,23 +579,24 @@ class PublishCommand extends Command {\n}\nrunPrepublishScripts(pkg) {\n- return Promise.resolve(this.runPackageLifecycle(pkg, \"prepare\")).then(() =>\n- this.runPackageLifecycle(pkg, \"prepublishOnly\")\n- );\n+ return Promise.resolve()\n+ .then(()...
JavaScript
MIT License
lerna/lerna
refactor(publish): Minor tweaks
1
refactor
publish
807,849
28.03.2018 16:06:33
25,200
7c5a79157fd1719cb3c9c38e3a8cd7d0fc2f19b2
feat(npm-run-script): Accept opts.reject
[ { "change_type": "MODIFY", "diff": "@@ -27,6 +27,26 @@ describe(\"npm-run-script\", () => {\nexpect(ChildProcessUtilities.exec).lastCalledWith(\"npm\", [\"run\", script, \"--bar\", \"baz\"], {\ncwd: config.pkg.location,\n+ reject: true,\n+ });\n+ });\n+\n+ it(\"accepts opts.reject\", async () => {\n+ const ...
JavaScript
MIT License
lerna/lerna
feat(npm-run-script): Accept opts.reject
1
feat
npm-run-script
807,849
28.03.2018 17:55:32
25,200
6e4c6fdc8a04ba9d7bc28daa5a755f6f54772834
fix(exec): Clarify --no-bail option
[ { "change_type": "MODIFY", "diff": "@@ -24,7 +24,8 @@ exports.builder = yargs => {\n.options({\nbail: {\ngroup: \"Command Options:\",\n- describe: \"Bail on exec execution when the command fails within a package\",\n+ describe: \"Stop when the command fails in a package.\\nPass --no-bail to continue despite...
JavaScript
MIT License
lerna/lerna
fix(exec): Clarify --no-bail option
1
fix
exec
217,922
28.03.2018 18:10:34
-7,200
85fba3831f4b83b72234489aa37275225115513a
fix: tags now copy over lists closes
[ { "change_type": "MODIFY", "diff": "@@ -58,6 +58,7 @@ export class List extends DataModel {\n}\nclone.name = this.name;\nclone.version = this.version || '1.0.0';\n+ clone.tags = this.tags;\ndelete clone.$key;\nga('send', 'event', 'List', 'creation');\nga('send', 'event', 'List', 'clone');\n", "new_path"...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: tags now copy over lists closes #304
1
fix
null
807,849
28.03.2018 18:33:30
25,200
893fcc8b423ec11759a453f11751852344a77bcd
feat(run): Add --no-bail option Fixes
[ { "change_type": "MODIFY", "diff": "\"name\": \"package-1\",\n\"version\": \"1.0.0\",\n\"scripts\": {\n+ \"fail\": \"exit 1\",\n\"my-script\": \"echo package-1\"\n}\n}\n", "new_path": "commands/run/__tests__/__fixtures__/basic/packages/package-1/package.json", "old_path": "commands/run/__tests__/__f...
JavaScript
MIT License
lerna/lerna
feat(run): Add --no-bail option Fixes #1351
1
feat
run
724,096
28.03.2018 19:45:18
-25,200
dabb2fdc4fe8fa7e4bd3ab0ce7ec6d81bc61d74c
types: expose wrapper and wraperarray
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,7 @@ interface BaseWrapper {\ndestroy (): void\n}\n-interface Wrapper<V extends Vue> extends BaseWrapper {\n+export interface Wrapper<V extends Vue> extends BaseWrapper {\nreadonly vm: V\nreadonly element: HTMLElement\nreadonly options: WrapperOptions\n@@ -95...
JavaScript
MIT License
vuejs/vue-test-utils
types: expose wrapper and wraperarray (#491)
1
types
null
217,922
28.03.2018 22:15:06
-7,200
f456443383b661f57b72f0d167de9173277f13b3
fix: macro translation is now working properly with non-skill lines
[ { "change_type": "MODIFY", "diff": "@@ -55,23 +55,8 @@ import {GatheringLocationModule} from './pages/gathering-location/gathering-loca\nimport {WorkshopModule} from './pages/workshop/workshop.module';\nimport {CustomLinksModule} from './pages/custom-links/custom-links.module';\nimport {LinkModule} from './...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
fix: macro translation is now working properly with non-skill lines
1
fix
null
679,913
28.03.2018 22:30:43
-3,600
10d5a34799c1a0fce513e676a70d0e8e70e5c3bd
fix(pointfree): add 0-arity comp() (identity fn)
[ { "change_type": "MODIFY", "diff": "-import { illegalArity } from \"@thi.ng/api/error\";\nimport { StackFn } from \"./api\";\n/**\n* Similar to (and ported from @thi.ng/transducers/func/comp), but uses\n* inverted composition order (right-to-left).\n*/\n+export function comp(): StackFn;\nexport function com...
TypeScript
Apache License 2.0
thi-ng/umbrella
fix(pointfree): add 0-arity comp() (identity fn)
1
fix
pointfree
679,913
28.03.2018 22:34:13
-3,600
0f0c382fd69e58ae57acc1b8c5e0f7fef8341086
feat(pointfree): add new words, rename words, remove mapnth, pushl2 add mapl(), mapll() array transformers refactor foldl() in terms of mapl() add even/odd() rename ladd etc. vadd... revert op2v to produce new result arrays add runE() syntax sugar update tests
[ { "change_type": "MODIFY", "diff": "@@ -36,19 +36,30 @@ export const run = (prog: StackProc, ctx: StackContext = [[], [], {}]): StackCon\n};\n/**\n- * Like `run()`, but returns unwrapped result. Short version for:\n- * `unwrap(run(),n)`\n+ * Like `run()`, but returns unwrapped result. Syntax sugar for:\n+ *...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(pointfree): add new words, rename words, remove mapnth, pushl2 - add mapl(), mapll() array transformers - refactor foldl() in terms of mapl() - add even/odd() - rename ladd etc. vadd... - revert op2v to produce new result arrays - add runE() syntax sugar - update tests
1
feat
pointfree
679,913
28.03.2018 22:35:45
-3,600
e35a2ca1278165e0c2f8209263943680fb47510c
build(paths): update package
[ { "change_type": "MODIFY", "diff": "{\n\"name\": \"@thi.ng/paths\",\n\"version\": \"1.1.1\",\n- \"description\": \"immutable, optimized path-based object accessors\",\n+ \"description\": \"immutable, optimized path-based object property / array accessors\",\n\"main\": \"./index.js\",\n\"typings\": \"./index...
TypeScript
Apache License 2.0
thi-ng/umbrella
build(paths): update package
1
build
paths
679,913
29.03.2018 01:23:11
-3,600
221ece65670823594602006ce966f64b6da3092d
build: update make-module/make-example scripts
[ { "change_type": "MODIFY", "diff": "@@ -26,15 +26,15 @@ cat << EOF > $MODULE/package.json\n\"debdev\": \"see index.html && webpack -w\"\n},\n\"devDependencies\": {\n- \"ts-loader\": \"^3.3.1\",\n- \"typescript\": \"^2.7.1\",\n- \"webpack\": \"^3.10.0\"\n+ \"ts-loader\": \"^3.5.0\",\n+ \"typescript\": \"^2.7...
TypeScript
Apache License 2.0
thi-ng/umbrella
build: update make-module/make-example scripts
1
build
null
807,890
29.03.2018 01:34:07
-10,800
45efa2404933e890e5561ac4c3e0dd0c4c08cb04
feat: Execute atomic publish lifecycle during lerna publish
[ { "change_type": "MODIFY", "diff": "\"scripts\": {\n\"preversion\": \"echo preversion-root\",\n\"version\": \"echo version-root\",\n- \"postversion\": \"echo postversion-root\"\n+ \"postversion\": \"echo postversion-root\",\n+ \"prepublish\": \"echo prepublish-root\",\n+ \"prepare\": \"echo prepare-root\",\...
JavaScript
MIT License
lerna/lerna
feat: Execute atomic publish lifecycle during lerna publish (#1348)
1
feat
null
791,813
29.03.2018 01:40:38
-7,200
2200c7851e5f7c361b545dd9fdacfa630fe5cf9e
extension: use browserify url library Also bumps robots-parser dependency to 2.0.1
[ { "change_type": "MODIFY", "diff": "@@ -121,7 +121,6 @@ gulp.task('browserify-lighthouse', () => {\n// to the modified version internal to Lighthouse.\nbundle.transform('./dtm-transform.js', {global: true})\n.ignore('source-map')\n- .ignore('url')\n.ignore('debug/node')\n.ignore('raven')\n.ignore('mkdirp')\...
JavaScript
Apache License 2.0
googlechrome/lighthouse
extension: use browserify url library (#4875) Also bumps robots-parser dependency to 2.0.1
1
extension
null
311,007
29.03.2018 03:05:29
-32,400
539be952ad217be6f6ca55db7be09ccc2bf3634f
fix(generate): change selector for angular rule
[ { "change_type": "MODIFY", "diff": "import { Component, OnInit } from '@angular/core';\n@Component({\n- selector: '<%= kebabCase(name) %>-page',\n+ selector: 'app-page-<%= kebabCase(name) %>',\ntemplateUrl: './<%= kebabCase(name) %>.page.html',\nstyleUrls: ['./<%= kebabCase(name) %>.page.<%= styleext %>'],\...
TypeScript
MIT License
ionic-team/ionic-cli
fix(generate): change selector for angular rule (#3031)
1
fix
generate
679,913
29.03.2018 05:02:03
-3,600
943b4f9c8e7be7f4055c9cb44baad4058e9cb699
feat(pointfree): add new words, constructs, aliases, fix re-exports add dotimes() loop construct add obj(), bindkeys() object words add rinc/rdec() r-stack words add sin/cos/atan2/rand/log math ops add vec2/3/4 tuple aliases add API types & comp() to re-exports
[ { "change_type": "MODIFY", "diff": "@@ -510,6 +510,23 @@ export const rswap = _swap(1);\n*/\nexport const rswap2 = _swap2(1);\n+/**\n+ * Like `inc`, but applies to r-stack TOS.\n+ *\n+ * @param ctx\n+ */\n+export const rinc = (ctx: StackContext) =>\n+ ($(ctx[1], 1), ctx[1][ctx[1].length - 1]++ , ctx);\n+\n+...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(pointfree): add new words, constructs, aliases, fix re-exports - add dotimes() loop construct - add obj(), bindkeys() object words - add rinc/rdec() r-stack words - add sin/cos/atan2/rand/log math ops - add vec2/3/4 tuple aliases - add API types & comp() to re-exports
1
feat
pointfree
679,913
29.03.2018 05:14:46
-3,600
0baf1f8aa78dccb783056cdef487c61ca7336023
docs(pointfree): update readme & package
[ { "change_type": "MODIFY", "diff": "@@ -45,7 +45,7 @@ inspired DSL:\n- dual stack (main & stash/scratch space)\n- nested execution environments (scopes)\n- arbitrary stack values\n-- quotations (static or dynamically generated programs stored on stack)\n+- nested quotations (static or dynamically generated ...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(pointfree): update readme & package
1
docs
pointfree
679,913
29.03.2018 05:15:21
-3,600
6cbacec75794003a935b065ab9cff84bb36c19a6
feat(hdom-components): add svg line()
[ { "change_type": "MODIFY", "diff": "@@ -43,6 +43,17 @@ export const rect = (p: ArrayLike<number>, width = 1, height = 1, attr?) =>\n}, attr)\n];\n+export const line = (a: ArrayLike<number>, b: ArrayLike<number>, attr?) =>\n+ [\n+ \"line\",\n+ Object.assign({\n+ x1: ff(a[0]),\n+ y1: ff(a[1]),\n+ x2: ff(b[0])...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(hdom-components): add svg line()
1
feat
hdom-components
815,746
29.03.2018 08:09:09
-10,800
c75595dba06e9365557254d3bcdc4426118c8965
feat: auto position dropdown by default fixes fixes fixes
[ { "change_type": "MODIFY", "diff": "@@ -130,7 +130,7 @@ map: {\n| closeOnSelect | `boolean` | true | no | Whether to close the menu when a value is selected |\n| [clearable] | `boolean` | `true` | no | Allow to clear selected value. Default `true`|\n| clearAllText | `string` | `Clear all` | no | Set custom ...
TypeScript
MIT License
ng-select/ng-select
feat: auto position dropdown by default (#382) fixes #367 fixes #256 fixes #306
1
feat
null
815,746
29.03.2018 08:11:10
-10,800
dd7e035903b57f4744a9fb8ab35d866427e1d5c7
chore(release): 0.32.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.32.0\"></a>\n+# [0.32.0](https://github.com/ng-select/ng-select/compare/v0.31.1...v...
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.32.0
1
chore
release
730,429
29.03.2018 11:34:22
14,400
8271005a9132b1cdcefe0034ae901046521b8c4a
fix(journeys): removing phone plugin from tests plugin isn't needed during node tests and causes webrtc errors
[ { "change_type": "MODIFY", "diff": "import testUsers from '@ciscospark/test-helper-test-users';\n-import '@ciscospark/plugin-phone';\nimport {switchToMeet} from '../../../lib/test-helpers/space-widget/main';\nimport {elements, hangupBeforeAnswerTest, declineIncomingCallTest, hangupDuringCallTest} from '../....
JavaScript
MIT License
webex/react-widgets
fix(journeys): removing phone plugin from tests plugin isn't needed during node tests and causes webrtc errors
1
fix
journeys
730,429
29.03.2018 11:35:11
14,400
aa281a97c82f35ca07f39f2dab30cd2a0f56c275
chore(wdio): add guest tests
[ { "change_type": "MODIFY", "diff": "@@ -123,11 +123,13 @@ exports.config = {\n'./test/journeys/specs/multiple/index.js',\n'./test/journeys/specs/oneOnOne/dataApi/basic.js',\n'./test/journeys/specs/oneOnOne/dataApi/features.js',\n+ './test/journeys/specs/oneOnOne/dataApi/guest.js',\n'./test/journeys/specs/on...
JavaScript
MIT License
webex/react-widgets
chore(wdio): add guest tests
1
chore
wdio
807,849
29.03.2018 12:25:17
25,200
9d95fb8e0adc125288b26739ce282c665a1a82e6
refactor(import): Move helper function into instance method
[ { "change_type": "MODIFY", "diff": "@@ -10,7 +10,6 @@ const Command = require(\"@lerna/command\");\nconst GitUtilities = require(\"@lerna/git-utils\");\nconst PromptUtilities = require(\"@lerna/prompt\");\nconst ValidationError = require(\"@lerna/validation-error\");\n-const getTargetBase = require(\"./lib/...
JavaScript
MIT License
lerna/lerna
refactor(import): Move helper function into instance method
1
refactor
import
807,849
29.03.2018 13:28:06
25,200
9a47ff7162a9f1851694b698de155f8a75432faa
feat(project): Merge `package` and `packageJson` into `manifest`
[ { "change_type": "MODIFY", "diff": "@@ -46,7 +46,11 @@ class BootstrapCommand extends Command {\n);\n}\n- if (npmClient === \"yarn\" && this.project.packageJson.workspaces && this.options.useWorkspaces !== true) {\n+ if (\n+ npmClient === \"yarn\" &&\n+ this.project.manifest.json.workspaces &&\n+ this.optio...
JavaScript
MIT License
lerna/lerna
feat(project): Merge `package` and `packageJson` into `manifest`
1
feat
project
807,849
29.03.2018 13:56:33
25,200
707d1f041f8041dd3e0f55c2830b8319c24eb6a6
feat(package): Add Map-like get/set methods, remove raw json getter BREAKING CHANGE: The `Package` class no longer provides direct access to the JSON object used to construct the instance. Map-like `get()`/`set(val)` methods are available to modify the internal representation.
[ { "change_type": "MODIFY", "diff": "@@ -144,11 +144,14 @@ class AddCommand extends Command {\n}\ngetPackageDeps(pkg) {\n- if (!pkg.json[this.dependencyType]) {\n- pkg.json[this.dependencyType] = {};\n+ let deps = pkg.get(this.dependencyType);\n+\n+ if (!deps) {\n+ deps = {};\n+ pkg.set(this.dependencyType, ...
JavaScript
MIT License
lerna/lerna
feat(package): Add Map-like get/set methods, remove raw json getter BREAKING CHANGE: The `Package` class no longer provides direct access to the JSON object used to construct the instance. Map-like `get()`/`set(val)` methods are available to modify the internal representation.
1
feat
package
807,849
29.03.2018 16:04:43
25,200
fdec3ac39f434f1b2cb8db447711d8e580c2bae2
feat(package): Add `serialize()` method
[ { "change_type": "MODIFY", "diff": "@@ -5,7 +5,6 @@ const npa = require(\"npm-package-arg\");\nconst packageJson = require(\"package-json\");\nconst pMap = require(\"p-map\");\nconst semver = require(\"semver\");\n-const writePkg = require(\"write-pkg\");\nconst Command = require(\"@lerna/command\");\nconst...
JavaScript
MIT License
lerna/lerna
feat(package): Add `serialize()` method
1
feat
package
807,849
29.03.2018 16:06:25
25,200
9371020d1aa088c08139b5343d77778824ebdd76
refactor(add): Map scope names after makeChanges()
[ { "change_type": "MODIFY", "diff": "@@ -79,14 +79,14 @@ class AddCommand extends Command {\nexecute() {\nthis.logger.info(`Add ${this.dependencyType} in ${this.packagesToChange.length} packages`);\n- return this.makeChanges().then(pkgs => {\n- this.logger.info(`Changes require bootstrap in ${pkgs.length} pa...
JavaScript
MIT License
lerna/lerna
refactor(add): Map scope names after makeChanges()
1
refactor
add
791,690
29.03.2018 16:10:59
25,200
467453d2c15a4d3c111328a8fbfd65e3d5b052d0
core(config): switch to throttling settings object
[ { "change_type": "MODIFY", "diff": "@@ -137,7 +137,7 @@ class UnusedBytes extends Audit {\nstatic createAuditResult(result, graph) {\nconst simulatorOptions = PredictivePerf.computeRTTAndServerResponseTime(graph);\n// TODO: calibrate multipliers, see https://github.com/GoogleChrome/lighthouse/issues/820\n- ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
core(config): switch to throttling settings object (#4879)
1
core
config
679,913
29.03.2018 16:48:27
-3,600
3dc30a8eee86f336a3d4ce8171044f115ee69428
feat(pointfree): add combinators, update controlflow words, remove execq add condq(), loopq() update dotimes() to use quotations from stack, no more HOF add dip/2/3/4 combinators add keep/2/3 combinators add bi/2/3 combinators add dup3 refactor exec to work w/ quotations, remove execq add/update tests
[ { "change_type": "MODIFY", "diff": "\"keywords\": [\n\"composition\",\n\"concatenative\",\n+ \"dataflow\",\n\"DSL\",\n\"ES6\",\n\"Forth\",\n", "new_path": "packages/pointfree/package.json", "old_path": "packages/pointfree/package.json" }, { "change_type": "MODIFY", "diff": "@@ -286,6 +28...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(pointfree): add combinators, update controlflow words, remove execq - add condq(), loopq() - update dotimes() to use quotations from stack, no more HOF - add dip/2/3/4 combinators - add keep/2/3 combinators - add bi/2/3 combinators - add dup3 - refactor exec to work w/ quotations, remove execq - add/update tests
1
feat
pointfree
791,723
29.03.2018 17:04:33
25,200
73918f1a634f2a4462f069dbb4bbb247dc4e7dc9
misc(eslint): add no-floating-decimal (leading zero) rule
[ { "change_type": "MODIFY", "diff": "@@ -28,6 +28,7 @@ module.exports = {\n'CallExpression > ArrowFunctionExpression > :expression.body',\n],\n}],\n+ 'no-floating-decimal': 2,\n'max-len': [2, 100, {\nignoreComments: true,\nignoreUrls: true,\n", "new_path": ".eslintrc.js", "old_path": ".eslintrc.js" ...
JavaScript
Apache License 2.0
googlechrome/lighthouse
misc(eslint): add no-floating-decimal (leading zero) rule (#4893)
1
misc
eslint
807,849
29.03.2018 17:18:18
25,200
b5e61bfdfab7c151caa025d2f6b35aa1a69ab163
refactor(npm-conf): Split envReplace() into its own file
[ { "change_type": "ADD", "diff": "+\"use strict\";\n+\n+module.exports = envReplace;\n+\n+// https://github.com/npm/npm/blob/latest/lib/config/core.js#L409-L423\n+function envReplace(str) {\n+ if (typeof str !== \"string\" || !str) {\n+ return str;\n+ }\n+\n+ // Replace any ${ENV} values with the appropriate...
JavaScript
MIT License
lerna/lerna
refactor(npm-conf): Split envReplace() into its own file
1
refactor
npm-conf
807,849
29.03.2018 17:19:39
25,200
3c9a5dedb330bc5c0a3ad42ef301d859c05e57b2
fix(npm-conf): Replace env vars even in config keys
[ { "change_type": "MODIFY", "diff": "@@ -4,6 +4,7 @@ const assert = require(\"assert\");\nconst fs = require(\"fs\");\nconst path = require(\"path\");\nconst { ConfigChain } = require(\"config-chain\");\n+const envReplace = require(\"./env-replace\");\nconst findPrefix = require(\"./find-prefix\");\nconst pa...
JavaScript
MIT License
lerna/lerna
fix(npm-conf): Replace env vars even in config keys
1
fix
npm-conf
807,849
29.03.2018 17:33:00
25,200
1523520874d1c83b64b92665e26e55589bd8a869
fix(create): Silently ignore missing builtin npmrc Fixes
[ { "change_type": "MODIFY", "diff": "@@ -6,8 +6,17 @@ const path = require(\"path\");\nmodule.exports = builtinNpmrc;\nfunction builtinNpmrc() {\n- const globalNpmBin = path.resolve(path.dirname(process.execPath), \"npm\");\n+ let resolvedPath = \"\";\n+ try {\n// e.g., /usr/local/lib/node_modules/npm/npmrc\...
JavaScript
MIT License
lerna/lerna
fix(create): Silently ignore missing builtin npmrc Fixes #1353
1
fix
create
807,849
29.03.2018 18:24:49
25,200
36c1fad745f9978b09006145988478e660812a1f
feat: Add --no-prefix for streaming output Credit:
[ { "change_type": "MODIFY", "diff": "@@ -22,9 +22,9 @@ const calledInPackages = () =>\nChildProcessUtilities.spawn.mock.calls.map(([, , opts]) => path.basename(opts.cwd));\nconst execInPackagesStreaming = testDir =>\n- ChildProcessUtilities.spawnStreaming.mock.calls.reduce((arr, [command, params, opts]) => {...
JavaScript
MIT License
lerna/lerna
feat: Add --no-prefix for streaming output (#1352) Credit: @raymondfeng
1
feat
null
679,913
29.03.2018 22:53:56
-3,600
b096e436c7e20c49df151929d3d1faf8ec91c1e7
feat(pointfree): add more dataflow combinators, words & tests add tri/2/3 add bis/2, tris/2 add bia/2, tria/2 add both, either add oneover
[ { "change_type": "MODIFY", "diff": "@@ -99,6 +99,69 @@ export const unwrap = ([stack]: StackContext, n = 1) =>\ntos(stack) :\nstack.slice(Math.max(0, stack.length - n));\n+//////////////////// Dynamic words & quotations ////////////////////\n+\n+/**\n+ * Higher order word. Takes a StackProgram and returns i...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(pointfree): add more dataflow combinators, words & tests - add tri/2/3 - add bis/2, tris/2 - add bia/2, tria/2 - add both, either - add oneover
1
feat
pointfree
815,746
30.03.2018 09:40:24
-10,800
8830eb61681b48f0c53110f733eb74a5a6b7f701
feat: allow to select on tab closes
[ { "change_type": "MODIFY", "diff": "@@ -143,6 +143,7 @@ map: {\n| notFoundText | `string` | `No items found` | no | Set custom text when filter returns empty result |\n| placeholder | `string` | `-` | no | Placeholder text. |\n| [searchable] | `boolean` | `true` | no | Allow to search for value. Default `tr...
TypeScript
MIT License
ng-select/ng-select
feat: allow to select on tab (#397) closes #370
1
feat
null
815,746
30.03.2018 09:40:49
-10,800
532e332d235cf80c8dc3627e1638f322015e7bf4
chore(release): 0.33.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.33.0\"></a>\n+# [0.33.0](https://github.com/ng-select/ng-select/compare/v0.32.0...v...
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.33.0
1
chore
release
807,849
30.03.2018 11:40:19
25,200
59dc2d456a9342b002fc8bf0558af147344037c6
fix(child-process): Do not merge lines of streaming stderr Fixes
[ { "change_type": "MODIFY", "diff": "@@ -37,11 +37,13 @@ function spawnStreaming(command, args, opts, prefix) {\nconst color = chalk[colorName];\nconst spawned = _spawn(command, args, options);\n- const stdoutTag = prefix ? `${color.bold(prefix)}:` : \"\";\n- const stderrTag = prefix ? `${color(prefix)}:` : ...
JavaScript
MIT License
lerna/lerna
fix(child-process): Do not merge lines of streaming stderr Fixes #994
1
fix
child-process
807,849
30.03.2018 12:14:46
25,200
bea6bc39cadffc5715bc624f32ff69ad97ac6064
fix: Use ValidationError instead of Error
[ { "change_type": "MODIFY", "diff": "@@ -33,7 +33,7 @@ class ExecCommand extends Command {\nthis.args = (args || []).concat(dashedArgs);\nif (!this.command) {\n- throw new ValidationError(\"exec\", \"A command to execute is required\");\n+ throw new ValidationError(\"ENOCOMMAND\", \"A command to execute is r...
JavaScript
MIT License
lerna/lerna
fix: Use ValidationError instead of Error
1
fix
null
807,849
30.03.2018 12:39:26
25,200
c8a5526d7a4ff4d5ef49a818d1c7935a08f6f48a
fix(run): Exit early when no packages contain the targeted lifecycle
[ { "change_type": "MODIFY", "diff": "@@ -126,7 +126,9 @@ describe(\"RunCommand\", () => {\nawait lernaRun(testDir)(\"missing-script\");\n- expect(consoleOutput()).toBe(\"\");\n+ expect(loggingOutput(\"success\")).toContain(\n+ \"No packages found with the lifecycle script 'missing-script'\"\n+ );\n});\nit(\"...
JavaScript
MIT License
lerna/lerna
fix(run): Exit early when no packages contain the targeted lifecycle
1
fix
run
815,745
30.03.2018 15:12:14
-10,800
e9e66524702025689d92ba6869a7041eeff6b17b
chore(release): 0.34.0
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.34.0\"></a>\n+# [0.34.0](https://github.com/ng-select/ng-select/compare/v0.33.0...v...
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.34.0
1
chore
release
217,922
30.03.2018 16:05:51
-7,200
1e11c8cce3dc98d1e426189c22733aee9dcd7491
feat: show indicator for items used for final crafts The idea is to show a HQ mark on items needed for final crafts, as they are often interesting to have HQ. The amount needed for final crafts is shown when hovering the icon.
[ { "change_type": "MODIFY", "diff": "\"integrity\": \"sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=\",\n\"dev\": true\n},\n- \"raven-js\": {\n- \"version\": \"3.24.0\",\n- \"resolved\": \"https://registry.npmjs.org/raven-js/-/raven-js-3.24.0.tgz\",\n- \"integrity\": \"sha512-+/ygcWib8PXAE7Xq53j1tYxCgkzFyp9z05LYAKp2PA9Kw...
TypeScript
MIT License
ffxiv-teamcraft/ffxiv-teamcraft
feat: show indicator for items used for final crafts The idea is to show a HQ mark on items needed for final crafts, as they are often interesting to have HQ. The amount needed for final crafts is shown when hovering the icon.
1
feat
null
815,745
30.03.2018 16:17:56
-10,800
ec56c645028856422346580b6c4cb17152ebe0a9
fix: remove default compareWith
[ { "change_type": "MODIFY", "diff": "@@ -69,13 +69,14 @@ export class ItemsList {\nfindItem(value: any): NgOption {\nif (this._ngSelect.bindValue) {\n- return this._items.find(item => !item.hasChildren &&\n- this._ngSelect.compareWith(this.resolveNested(item.value, this._ngSelect.bindValue), value));\n+ retu...
TypeScript
MIT License
ng-select/ng-select
fix: remove default compareWith
1
fix
null
815,745
30.03.2018 16:19:35
-10,800
1cd0bee8c96a487bdbf4f27718843f012fa9c2fb
chore(release): 0.34.1
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.34.1\"></a>\n+## [0.34.1](https://github.com/ng-select/ng-select/compare/v0.34.0......
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.34.1
1
chore
release
815,746
30.03.2018 16:37:22
-10,800
2fca92820c01167784319a58d7255d67637b2df3
chore(release): 0.34.2
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.34.2\"></a>\n+## [0.34.2](https://github.com/ng-select/ng-select/compare/v0.34.1......
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.34.2
1
chore
release
807,849
30.03.2018 16:54:07
25,200
cd787648fea6b78a06ea4c39c141fd748783c64d
test(helpers): Add sawmill ...geddit?!
[ { "change_type": "ADD", "diff": "+\"use strict\";\n+\n+const concat = require(\"concat-stream\");\n+const log = require(\"npmlog\");\n+\n+module.exports = sawmill;\n+\n+function sawmill() {\n+ // https://en.wikipedia.org/wiki/Log_flume\n+ const flume = new Promise((finish, fouled) => {\n+ // overrides defau...
JavaScript
MIT License
lerna/lerna
test(helpers): Add sawmill ...geddit?!
1
test
helpers
807,849
30.03.2018 17:12:49
25,200
5242b510f21c6cca16989c5acfebf9637a60b53a
test(command-runner): Silence logging with streams
[ { "change_type": "ADD", "diff": "+// Jest Snapshot v1, https://goo.gl/fbAQLP\n+\n+exports[`ExecCommand in a cyclical repo warns when cycles are encountered 1`] = `\n+\"lerna WARN ECYCLE Dependency cycles detected, you should fix these!\n+lerna WARN ECYCLE package-cycle-1 -> package-cycle-2 -> package-cycle-...
JavaScript
MIT License
lerna/lerna
test(command-runner): Silence logging with streams
1
test
command-runner
807,849
30.03.2018 17:53:29
25,200
b766c836a27e504ae639b6d00eae52ab5c4ff7a0
feat: Enable progress bars only when necessary This inverts the previous pattern, where they were always enabled for TTYs, but rarely used. Also supports --no-progress and durable configuration.
[ { "change_type": "MODIFY", "diff": "@@ -95,6 +95,8 @@ class BootstrapCommand extends Command {\nreturn this.installRootPackageOnly();\n}\n+ // root install does not need progress bar\n+ this.enableProgressBar();\nthis.logger.info(\"\", `Bootstrapping ${this.filteredPackages.length} packages`);\nconst tasks ...
JavaScript
MIT License
lerna/lerna
feat: Enable progress bars only when necessary This inverts the previous pattern, where they were always enabled for TTYs, but rarely used. Also supports --no-progress and durable configuration.
1
feat
null
791,790
30.03.2018 23:00:10
-7,200
65dbd14fcccc0e6cf9181790a980dba8fa7d8189
docs: remove dated domhtml reference from README
[ { "change_type": "MODIFY", "diff": "@@ -70,7 +70,7 @@ Configuration:\n--audit-mode, -A Process saved artifacts from disk [boolean]\nOutput:\n- --output Reporter for the results, supports multiple values [choices: \"json\", \"html\", \"domhtml\"] [default: \"domhtml\"]\n+ --output Reporter for the results, s...
JavaScript
Apache License 2.0
googlechrome/lighthouse
docs: remove dated domhtml reference from README (#4900)
1
docs
null
724,210
31.03.2018 02:07:33
-32,400
1d531aa029a3e40fc364c6a986ce760e04a550d5
docs: replace from mapCoverage to collectCoverage in Jest sample.
[ { "change_type": "MODIFY", "diff": "@@ -48,8 +48,7 @@ Next, create a `jest` block in `package.json`:\n\"transform\": {\n// process `*.vue` files with `vue-jest`\n\".*\\\\.(vue)$\": \"<rootDir>/node_modules/vue-jest\"\n- },\n- \"mapCoverage\": true\n+ }\n}\n}\n```\n@@ -159,7 +158,7 @@ Jest recommends creatin...
JavaScript
MIT License
vuejs/vue-test-utils
docs: replace from mapCoverage to collectCoverage in Jest sample. (#493)
1
docs
null
724,111
31.03.2018 03:13:52
-28,800
3e50827926ed9bda36e58697def49711a6e576cf
docs: synced sync option
[ { "change_type": "MODIFY", "diff": "@@ -172,6 +172,8 @@ Pass properties for components to use in injection. See [provide/inject](https:/\n- type: `boolean`\n- default: `true`\n+Sets all watchers to run synchronously.\n+\nWhen `sync` is `true`, the Vue component is rendered synchronously.\nWhen `sync` is `fa...
JavaScript
MIT License
vuejs/vue-test-utils
docs: synced sync option (#474) (#482)
1
docs
null
679,913
31.03.2018 04:46:45
-3,600
5db90c538ffd8ae46517f822b14c08b226309463
feat(pointfree): add caseq()
[ { "change_type": "MODIFY", "diff": "@@ -1135,6 +1135,12 @@ export const cases = (cases: IObjectOf<StackProc>) =>\nillegalState(`no matching case for: ${tos}`);\n};\n+export const casesq = (ctx: StackContext) => {\n+ const stack = ctx[0];\n+ $(stack, 2);\n+ return cases(stack.pop())(ctx);\n+};\n+\n//////////...
TypeScript
Apache License 2.0
thi-ng/umbrella
feat(pointfree): add caseq()
1
feat
pointfree
679,913
31.03.2018 05:18:31
-3,600
9e43405a9a49de327da6d570729d430341702620
docs: update pointfree readme's
[ { "change_type": "MODIFY", "diff": "@@ -60,8 +60,6 @@ import * as pf from \"@thi.ng/pointfree-lang\";\n## Usage examples\n```ts\n-import * as pf from \"../src\";\n-\n// DSL source code (syntax described further below)\nconst src = `\n@@ -131,9 +129,13 @@ env.height = 480;\n// now actually call the `hairx` w...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs: update pointfree readme's
1
docs
null
679,913
31.03.2018 05:34:16
-3,600
fbb17957094d5352c4d80c6c0ecad142c73f91a3
docs(pointfree-lang): fix grammar link
[ { "change_type": "MODIFY", "diff": "@@ -34,7 +34,7 @@ Experimental, small DSL with compact [Forth]() style syntax for\n[@thi.ng/pointfree](https://github.com/thi-ng/umbrella/tree/master/packages/pointfree):\n- [PegJS](https://pegjs.org/) based\n- [grammar](https://github.com/thi-ng/umbrella/tree/master/pack...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(pointfree-lang): fix grammar link
1
docs
pointfree-lang
679,913
31.03.2018 05:46:52
-3,600
b16c85000309b3021a76b5d16b1629907d26638f
docs(pointfree-lang): fix readme link
[ { "change_type": "MODIFY", "diff": "@@ -30,7 +30,9 @@ This project is part of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrell\n## About\n-Experimental, small DSL with compact [Forth]() style syntax for\n+Experimental, small DSL with compact\n+[Forth](https://en.wikipedia.org/wiki/Forth_(programming...
TypeScript
Apache License 2.0
thi-ng/umbrella
docs(pointfree-lang): fix readme link
1
docs
pointfree-lang
815,745
31.03.2018 11:40:41
-10,800
1e16f98423b9b207bcdcfc158424fc0027400778
fix: keep placeholder visible in material theme fixes
[ { "change_type": "MODIFY", "diff": "@@ -198,7 +198,7 @@ export class ReactiveFormsComponent {\nheroId: 'hero1',\nagree: null,\nselectedCitiesIds: [],\n- age: ['', Validators.required],\n+ age: [null, Validators.required],\nalbum: '',\nphoto: ''\n});\n", "new_path": "demo/app/examples/reactive-forms.comp...
TypeScript
MIT License
ng-select/ng-select
fix: keep placeholder visible in material theme fixes #358
1
fix
null
815,745
31.03.2018 12:58:44
-10,800
8138c73ea113ba6a18d9ffdb1118f105792d3ebe
fix: hide IE input clear icon closes
[ { "change_type": "MODIFY", "diff": "outline: none;\ncursor: default;\nwidth: 100%;\n+ &::-ms-clear {\n+ display: none;\n+ }\n}\n}\n}\n", "new_path": "src/ng-select/ng-select.component.scss", "old_path": "src/ng-select/ng-select.component.scss" } ]
TypeScript
MIT License
ng-select/ng-select
fix: hide IE input clear icon closes #401
1
fix
null
815,745
31.03.2018 13:08:52
-10,800
e55b67497ff2adab64c36fb8d48518fa6a1e5f1f
fix: use correct aria role closes
[ { "change_type": "MODIFY", "diff": "@@ -63,7 +63,7 @@ export type CompareWithFn = (a: any, b: any) => boolean;\nencapsulation: ViewEncapsulation.None,\nchangeDetection: ChangeDetectionStrategy.OnPush,\nhost: {\n- 'role': 'dropdown',\n+ 'role': 'listbox',\n'class': 'ng-select',\n'[class.ng-single]': '!multip...
TypeScript
MIT License
ng-select/ng-select
fix: use correct aria role closes #403
1
fix
null
815,745
31.03.2018 13:32:27
-10,800
ff917910fab515c2d073cfd867c55a7219d26778
chore(release): 0.34.3
[ { "change_type": "MODIFY", "diff": "All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.\n+<a name=\"0.34.3\"></a>\n+## [0.34.3](https://github.com/ng-select/ng-select/compare/v0.34.2......
TypeScript
MIT License
ng-select/ng-select
chore(release): 0.34.3
1
chore
release