Asa Kusuma

Results 24 issues of Asa Kusuma

**Describe the bug** The JSON config rules for the schema technically do not require the `schema` field: https://github.com/kamilkisiela/graphql-config/blob/master/src/project-config.ts#L21 This is technically a legal config: ``` { "schemaPath":"foo", "projects":{ "myproject": {...

This line forces consuming packages to use the dom lib when compiling: https://github.com/andywer/threads.js/blob/master/src/types/master.ts#L1 This means that the host package can't properly type check for nodejs only. For example, the compiler...

Broadly speaking, we'd be more likely to use background sync if we had more agency over the constraints of the retry behavior. The three different scenarios I personally care about...

This is a feature request to use the `"node"` conditional export for the fastboot build. https://nodejs.org/api/packages.html#packages_conditional_exports I ran into this problem while using the uuid npm module, which has a...

When adding a prebuild script that runs during `prepare` and uses `ember-rollup/src/prebuild`, calling `rollup.preBuild()` sometimes hangs indefinitely. [The workaround](https://github.com/asakusuma/ember-spaniel/pull/29/commits/a52b5cb3efc38084702abf74caabff7c97a8181f#diff-11075c68948426bc130e9dfc0f4f5fdaR6) is to manually call `process.exit(0);`. I added a `console.log(process._getActiveHandles());` to [debug](https://github.com/asakusuma/ember-spaniel/commit/60b4689dcea4c4e039ac02c4d7d31ca0474b654d)....

One of the prebuild test fails if run twice. I discovered this issue while trying to add another test. Here's a reproduction: https://github.com/asakusuma/ember-rollup/pull/31 cc @arthirm

Test fails if copied (essentially run twice). Meaning that there's probably some state persisted that needs to be cleaned up. If you remove the `fs.removeSync(path.join(path.dirname(`${__dirname}`), '/tmp'));` from `afterEach`, the tests...

This PR adds an option that allows declaring a route to be an invalid terminal state, while also declaring what route should actually be visited if someone tries to visit...

I noticed that rebuild time for a particular addon (with a lot of handlebars AST transforms) recently ballooned from a few seconds to 80-90 seconds. It appears that something (I'm...

This will ensure there is no confusion around folks thinking they are importing from the actual `fetch` package. `import fetch from 'fetch'` > `import fetch from 'ember-fetch'` For backwards compatibility,...