Skip to content

Commit 26d9ddc

Browse files
committed
resolved merge conflicts after updating 'what's new' in the app
Co-authored-by: Daniel Garan <[email protected]> Co-authored-by: Kevin Can <[email protected]> Co-authored-by: Anthony Herrera <[email protected]> Co-authored-by: Rob Sinzieri <[email protected]> Co-authored-by: Roderick de Leon <[email protected]>
2 parents 7a892d2 + a8fcd4d commit 26d9ddc

33 files changed

+1470
-345
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<h1 align="center">
2-
<img src="src/assets/overvue_256x256_old.png">
2+
<img width="235 height ="235" src="src/assets/right_sidebar325x325.svg">
33
</h1>
44

55
<p align="center"><b>Prototyping Development Tool for Vue Developers</b></p>

__mocks__/styleMock.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module.exports = {}
2+

jest.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ module.exports = {
5353
'^pages/(.*)$': '<rootDir>/src/pages/$1',
5454
'^assets/(.*)$': '<rootDir>/src/assets/$1',
5555
'^boot/(.*)$': '<rootDir>/src/boot/$1',
56-
'.*css$': '@quasar/quasar-app-extension-testing-unit-jest/stub.css',
56+
'\\.(css)$': '<rootDir>/__mocks__/styleMock.js',
57+
'^@/(.*)$': '<rootDir>/src/$1',
5758
},
5859
preset: 'ts-jest',
5960
transform: {

package-lock.json

Lines changed: 96 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,12 +42,14 @@
4242
"core-js": "^3.21.1",
4343
"dotenv": "^16.0.0",
4444
"element-plus": "^2.2.16",
45+
"file-loader": "^6.2.0",
4546
"fs-extra": "^11.2.0",
4647
"http": "^0.0.1-security",
4748
"https": "^1.0.0",
4849
"jest": "^29.6.4",
4950
"jest-cli": "^29.6.4",
5051
"jest-environment-jsdom": "^29.6.4",
52+
"jest-serializer-vue": "^3.1.0",
5153
"localforage": "^1.10.0",
5254
"lodash.clonedeep": "^4.5.0",
5355
"lodash.isequal": "^4.5.0",

quasar.conf.js

Lines changed: 34 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ module.exports = configure(function (ctx) {
101101
// Full list of options: https://quasar.dev/quasar-cli/quasar-conf-js#Property%3A-devServer
102102
devServer: {
103103
server: {
104-
type: "http",
104+
type: "https",
105105
},
106106
port: 8080,
107107
open: true, // opens browser window automatically
@@ -177,31 +177,31 @@ module.exports = configure(function (ctx) {
177177
background_color: "#ffffff",
178178
theme_color: "#027be3",
179179
icons: [
180-
{
181-
src: "statics/icons/icon-128x128.png",
182-
sizes: "128x128",
183-
type: "image/png",
184-
},
185-
{
186-
src: "statics/icons/icon-192x192.png",
187-
sizes: "192x192",
188-
type: "image/png",
189-
},
190-
{
191-
src: "statics/icons/icon-256x256.png",
192-
sizes: "256x256",
193-
type: "image/png",
194-
},
195-
{
196-
src: "statics/icons/icon-384x384.png",
197-
sizes: "384x384",
198-
type: "image/png",
199-
},
200-
{
201-
src: "statics/icons/icon-512x512.png",
202-
sizes: "512x512",
203-
type: "image/png",
204-
},
180+
// {
181+
// src: "statics/icons/icon-128x128.png",
182+
// sizes: "128x128",
183+
// type: "image/png",
184+
// },
185+
// {
186+
// src: "statics/icons/icon-192x192.png",
187+
// sizes: "192x192",
188+
// type: "image/png",
189+
// },
190+
// {
191+
// src: "statics/icons/icon-256x256.png",
192+
// sizes: "256x256",
193+
// type: "image/png",
194+
// },
195+
// {
196+
// src: "statics/icons/icon-384x384.png",
197+
// sizes: "384x384",
198+
// type: "image/png",
199+
// },
200+
// {
201+
// src: "statics/icons/icon-512x512.png",
202+
// sizes: "512x512",
203+
// type: "image/png",
204+
// },
205205
],
206206
},
207207
},
@@ -251,7 +251,14 @@ module.exports = configure(function (ctx) {
251251
},
252252
],
253253
},
254-
254+
extendWebpack (cfg) {
255+
cfg.module.rules.push({
256+
test: /\.svg$/,
257+
use: [
258+
'file-loader'
259+
]
260+
})
261+
},
255262
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
256263
chainWebpackMain(chain) {
257264
chain

0 commit comments

Comments
 (0)