Carbon/spec.js

138 lines
2.4 KiB
JavaScript
Raw Normal View History

2020-10-11 13:26:24 +00:00
module.exports = [
{
type: "file",
source: "/assets/fonts/whitney-500.woff",
2020-10-20 18:22:13 +00:00
target: "/static/whitney-500.woff",
},
{
type: "file",
source: "/assets/fonts/whitney-400.woff",
2020-10-20 18:22:13 +00:00
target: "/static/whitney-400.woff",
},
{
type: "js",
source: "/js/main.js",
target: "/static/main.js",
},
{
type: "js",
source: "/js/basic.js",
2020-10-20 18:22:13 +00:00
target: "/static/basic.js",
},
{
type: "js",
source: "/js/groups.js",
2020-10-20 18:22:13 +00:00
target: "/static/groups.js",
},
{
type: "js",
source: "/js/chat-input.js",
2020-10-20 18:22:13 +00:00
target: "/static/chat-input.js",
},
{
type: "js",
source: "/js/room-picker.js",
2020-10-20 18:22:13 +00:00
target: "/static/room-picker.js",
},
{
type: "js",
source: "/js/store/store.js",
2020-10-20 18:22:13 +00:00
target: "/static/store/store.js",
},
{
type: "js",
source: "/js/store/Subscribable.js",
2020-10-20 18:22:13 +00:00
target: "/static/store/Subscribable.js",
},
{
type: "js",
source: "/js/store/SubscribeValue.js",
2020-10-20 18:22:13 +00:00
target: "/static/store/SubscribeValue.js",
},
{
type: "js",
source: "/js/store/SubscribeMapList.js",
2020-10-20 18:22:13 +00:00
target: "/static/store/SubscribeMapList.js",
},
{
type: "js",
source: "/js/store/SubscribeSet.js",
2020-10-20 18:22:13 +00:00
target: "/static/store/SubscribeSet.js",
},
{
type: "js",
source: "/js/sync/sync.js",
2020-10-20 18:22:13 +00:00
target: "/static/sync/sync.js",
},
{
type: "js",
source: "/js/lsm.js",
2020-10-20 18:22:13 +00:00
target: "/static/lsm.js",
},
{
type: "js",
source: "/js/Timeline.js",
2020-10-20 18:22:13 +00:00
target: "/static/Timeline.js",
},
{
type: "js",
source: "/js/Anchor.js",
2020-10-20 18:22:13 +00:00
target: "/static/Anchor.js",
},
{
type: "js",
source: "/js/chat.js",
2020-10-20 18:22:13 +00:00
target: "/static/chat.js",
},
2020-10-19 13:05:16 +00:00
{
type: "js",
source: "/js/functions.js",
2020-10-20 18:22:13 +00:00
target: "/static/functions.js",
2020-10-19 13:05:16 +00:00
},
2020-10-21 06:33:36 +00:00
{
type: "js",
source: "/js/login.js",
target: "/static/login.js",
},
{
type: "file",
source: "/assets/fonts/whitney-500.woff",
2020-10-20 18:22:13 +00:00
target: "/static/whitney-500.woff",
},
{
type: "file",
source: "/assets/icons/directs.svg",
2020-10-20 18:22:13 +00:00
target: "/static/directs.svg",
},
{
type: "file",
source: "/assets/icons/channels.svg",
2020-10-20 18:22:13 +00:00
target: "/static/channels.svg",
},
{
type: "file",
source: "/assets/icons/join-event.svg",
2020-10-20 18:22:13 +00:00
target: "/static/join-event.svg",
},
{
type: "sass",
source: "/sass/main.sass",
2020-10-20 18:22:13 +00:00
target: "/static/main.css",
},
{
type: "sass",
source: "/sass/login.sass",
target: "/static/login.css",
},
{
type: "pug",
source: "/home.pug",
2020-10-20 18:22:13 +00:00
target: "/index.html",
},
{
type: "pug",
source: "/login.pug",
target: "/login/index.html",
2020-10-20 18:22:13 +00:00
},
];