dolphins7.skeleton/twenty-frontend/nanoc/rules/connections.rules
0x1eef ae4e61abbf frontend: add require_rules, and more
The foundation of the 'New issue' form is included in this commit,
but far from finished. `/src/html/` has been added, along with other
file layout changes.
2023-12-20 16:37:40 -03:00

16 lines
326 B
Ruby

#!/usr/bin/env ruby
##
# GET /
compile '/html/connections/index.html.erb' do
layout "/default.*"
filter(:erb)
write('/index.html')
end
##
# GET /js/entry-point/connections.js
compile("/js/entry-point/connections.tsx") do
filter(:webpack, depend_on: %w[/js/components/])
write("/js/entry-point/connections.js")
end