Thanks Vue, very cool!
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
parent
b24d8aa47d
commit
37d5c6e912
3 changed files with 3 additions and 14 deletions
|
@ -13,7 +13,7 @@ steps:
|
|||
|
||||
- name: Build
|
||||
depends_on:
|
||||
- submodules
|
||||
- Clone
|
||||
image: node:16
|
||||
commands:
|
||||
- yarn
|
||||
|
|
|
@ -112,17 +112,5 @@ module.exports = {
|
|||
formatter: require('eslint-formatter-friendly')
|
||||
}),
|
||||
new VueLoaderPlugin(),
|
||||
// This copies Ruffle's WASM to a directory so that JS side can access it
|
||||
new CopyPlugin({
|
||||
patterns: [
|
||||
{
|
||||
from: "node_modules/@ruffle-rs/ruffle/**/*",
|
||||
to: "static/ruffle/[name][ext]"
|
||||
},
|
||||
],
|
||||
options: {
|
||||
concurrency: 100,
|
||||
},
|
||||
})
|
||||
]
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { mapState } from 'vuex'
|
||||
import StatusContent from '../status_content/status_content.vue'
|
||||
import Status from '../status/status.vue'
|
||||
import UserAvatar from '../user_avatar/user_avatar.vue'
|
||||
import UserCard from '../user_card/user_card.vue'
|
||||
|
@ -43,7 +44,7 @@ const Notification = {
|
|||
},
|
||||
props: ['notification'],
|
||||
components: {
|
||||
// StatusContent,
|
||||
StatusContent,
|
||||
UserAvatar,
|
||||
UserCard,
|
||||
Timeago,
|
||||
|
|
Loading…
Reference in a new issue