Homa Wong
Homa Wong
Some example projects has been added to `typings-examples.md` (Link to be added). I'm looking for some more examples to cover the typical shape of the module. For example: - Exporting...
## Describe the bug `.vscode/settings.json`: ```js { "yaml.schemas": { "./schema1.json": ["**/some-folder/**/*.yaml"], "./schema2.json": ["**/some-folder/*.yaml"] } } ``` ## Expected Behavior The file `./packages/some-folder/abc/x.yaml` should be validated against `schema1.json` only. ## Current...
Or do you want to change the example to `T`? 🌷
http://stackoverflow.com/questions/32084356/how-to-simulate-login-in-gemini ``` gemini.suite('start login', function(loginSuite) { loginSuite.setUrl('/login') .before(function(actions, find) { actions.sendKeys(find('#username'), 'user'); actions.sendKeys(find('#password'), 'pwd'); actions.click('#submit'); actions.waitForElementToShow('#myMainElement', 20000) }) .setCaptureElements('#myMainElement') .capture('plain'); }); ``` The above code doesn't work. The waitForElementToShow(...) will...
trying to see if that fixes the issue instead of using `legacy-peer-deps`. Currently, this is blocking the usage of `pnpm` as I'm trying it out. I'm not sure will this...
package.json like this work: ```json { "main": "lib/index.js" } ``` package.json like this does not work: ```json { "main": "lib/index" } ``` There was a recommendation to use the second...
Is it possible for `dependency-check` to support `jspm`? ``` js // package.json { "jspm": { "dependencies": { "any-promise": "npm:any-promise@^1.3.0", "lodash": "npm:lodash@^4.13.1" }, } ``` `dependency-check . --unused --no-dev && dependency-check...
Currently `EventEmitter2` can't be assigned directly to a `EventEmitter` interface: ```ts import events = require('events') import { EventEmitter2, Listener } from 'eventemitter2' let e: events.EventEmitter let e2 = new EventEmitter2()...
When I save multiple files at the same time, each save creates a new session. It seems to drag down performance quite a bit. Also, it is more apparent when...
It would be great to show (and PDF printable) the outline sorted by scenes. That would make it easier to shot all the scenes in the same setting at the...