stamp
stamp copied to clipboard
Stamps - better OOP model
In order to offer users proper Typescript support, two options are available: 1. hand crafted `.d.ts` files for each published package 2. porting current `.js` source code to Typescript (with...
Now that this is no longer RFC I've moved this issue from [#356 in stampit](https://github.com/stampit-org/stampit/issues/356) to here. The new types will differentiate a generic `Stamp` from a `Stamp` that has...
For #45. Will add details in here if need be.
Greetings, stamp people. I've been messing around with stamps for a relatively small project and it has been a fantastic development experience. That said, I'm interested on how to implement...
I have a stamp with a method that uses `get` style function: ``` methods: { /** * @returns {string} */ get label() { return this.state.label.target }, ... ``` I also...
Should the npm package be [deprecated](https://docs.npmjs.com/deprecating-and-undeprecating-packages-or-package-versions)? If yes, the following files should include the reason why it is deprecated. - `packages/named/index.js` - `packages/named/README.md`
Current implementation of `@stamp/core/mergeOne()` does not fully check if its first parameter `dst` is `undefined`. If the second parameter `src` is an object, `dst` is never checked and assumed to...
Closes #45
Howdy, I'm running into some problems with stubbing methods on stamps that have been privatized. In particular, because referencing the injected method always references the PROXY function, there's no way...