@nxtedition/lib 14.0.9 → 14.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/lib",
3
- "version": "14.0.9",
3
+ "version": "14.0.10",
4
4
  "license": "MIT",
5
5
  "author": "Robert Nagy <robert.nagy@boffins.se>",
6
6
  "files": [
@@ -196,12 +196,7 @@ module.exports = (options) => {
196
196
  }
197
197
 
198
198
  return (args$) =>
199
- expr(args$).pipe(
200
- rx.switchMap((body) => {
201
- const str = `${pre}${stringify(body, type !== 'js')}${post}`
202
- return compileStringTemplate(str)?.(args$) ?? rxjs.of(str)
203
- })
204
- )
199
+ expr(args$).pipe(rx.map((body) => `${pre}${stringify(body, type !== 'js')}${post}`))
205
200
  },
206
201
  (str, hash) => hash ?? hashTemplate(str)
207
202
  )