Clay Shentrup
Clay Shentrup
Suppose you want to do something like: ```javascript new Cleave( this.fp.altInput, { date: true, datePattern: ["m", "d", "Y"], } ); ``` If you put this in `connect()` then it'll re-run...
Hi. I _think_ I did this correctly, but our searches are awfully slow and I'm trying to verify that I've done things correctly. Here are the indexes. ```ruby execute( explain...
Passing the PORT via an environment variable gives the error, `Port 5100 is already in use.` But this works in `.ember-cli.js` ``` module.exports = { "port": Number(process.env.PORT) }; ``` You...
See this error from the [latest Tagify](https://github.com/yairEO/tagify/blob/23c7e3caf1efb791775e9b073adebc79b1f4f2ab/src/tagify.scss). ``` Error: Invalid CSS after "... $size: math": expected expression (e.g. 1px, bold), was ".div(-$tagMargin, 2" on line 267:32 of node_modules/@yaireo/tagify/src/tagify.scss from line...
E.g. ``` applications: - name: notebooks-frontend buildpacks: - nodejs_buildpack command: "yarn serve" path: app/notebooks ``` `path` works in `manifest.yml`, but not in `local.yml`. I do see that there's the `-p`...
we have some secrets which are a JSON string. this leads to the following error. ``` /etc/buildkite-agent/plugins/github-robot-car-cruise-vault-secrets-buildkite-plugin-git-v2-0-0/hooks/environment: line 133: PRIVATE: command not found ``` the cause? this apparently isn't bash...
there's a bug in this plugin in that it inconsistently adds YAML escaping, e.g. `krs1` => `krs1` `1` => `"1"` `0.95` => `"0.95"` `0.0.0.1` => `0.0.0.1` // if there's more...