infrastructure: create monorepo structure with apps/angular, apps/react, e2e directories

This commit is contained in:
gnezim
2026-04-05 18:53:38 +03:00
parent c012c7ebe8
commit 382d8c453a
34399 changed files with 18 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
'use strict'
let Stringifier = require('./stringifier')
function stringify(node, builder) {
let str = new Stringifier(builder)
str.stringify(node)
}
module.exports = stringify
stringify.default = stringify