Skip to content

Commit c182673

Browse files
authored
Remove Wikit Leftovers (#879)
* remove wikit leftovers * tidy up indentation
1 parent 4b2b39c commit c182673

File tree

6 files changed

+944
-965
lines changed

6 files changed

+944
-965
lines changed

jest.config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ module.exports = {
2222
// "import Counter from '@/Counter.vue'"
2323
// (no need for a full path)
2424
"moduleNameMapper": {
25-
'^@wmde/wikit-vue-components$':
26-
'@wmde/wikit-vue-components/dist/wikit-vue-components-vue3compat.common.js',
27-
'^wikit-dist(.*)$': "<rootDir>/node_modules/@wmde/wikit-vue-components/dist$1",
2825
"^@/(.*)$": "<rootDir>/resources/js/$1",
2926
},
3027
// For Vue migration build

package-lock.json

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

package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@
5959
"dependencies": {
6060
"@inertiajs/inertia": "^0.11.0",
6161
"@inertiajs/inertia-vue3": "^0.6.0",
62-
"@wmde/wikit-tokens": "^2.1.0-alpha.15",
63-
"@wmde/wikit-vue-components": "^2.1.0-alpha.16",
6462
"date-fns": "^3.3.1",
6563
"lodash": "^4.17.21",
6664
"pinia": "^2.1.7",

resources/js/Components/LoadingOverlay.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ $base: '.loading-indicator';
8787
8888
.cdx-progress-bar {
8989
min-width: 432px;
90-
91-
@media (max-width: $width-breakpoint-tablet) {
90+
91+
@media (max-width: $max-width-breakpoint-tablet) {
9292
min-width: 90vw;
9393
}
9494
}

resources/sass/app.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
@import 'https://tools-static.wmflabs.org/fontcdn/css2?family=Lato&family=Source+Serif+Pro&display=swap';
22
@import '~ress';
3-
@import '~wikit-dist/wikit-vue-components-vue3compat.css';
43
@import "@wikimedia/codex/dist/codex.style.css";
54
@import "@wikimedia/codex-design-tokens/theme-wikimedia-ui";
65
@import '../css/custom-variables.css';

webpack.mix.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,7 @@ const path = require('path');
1212
*/
1313

1414
mix.ts('resources/js/app.ts', 'public/js')
15-
.webpackConfig({
16-
resolve: {
17-
alias: {
18-
'@wmde/wikit-vue-components':
19-
'@wmde/wikit-vue-components/dist/wikit-vue-components-vue3compat.common.js',
20-
'wikit-dist': path.resolve(__dirname, './node_modules/@wmde/wikit-vue-components/dist'),
21-
}
22-
}
23-
})
15+
.webpackConfig({})
2416
.vue({ version: 3})
2517
.sass('resources/sass/app.scss', 'public/css')
2618
.sass('resources/sass/noscript.scss', 'public/css')

0 commit comments

Comments
 (0)