Skip to content

Commit f831e90

Browse files
authored
Remove Vote page (webpack#6732)
1 parent b338529 commit f831e90

File tree

7 files changed

+22
-188
lines changed

7 files changed

+22
-188
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,6 @@
156156
"react-use": "^17.4.0",
157157
"react-visibility-sensor": "^5.0.2",
158158
"webpack-pwa-manifest": "^4.3.0",
159-
"webpack.vote": "https://github.com/webpack/voting-app.git",
160159
"workbox-window": "^6.5.4"
161160
},
162161
"resolutions": {

src/components/Site/Site.jsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import Sidebar from '../Sidebar/Sidebar';
3131
import Footer from '../Footer/Footer';
3232
import Page from '../Page/Page';
3333
import PageNotFound from '../PageNotFound/PageNotFound';
34-
import Vote from '../Vote/Vote';
3534
import Badge from '../Badge/Badge.js';
3635
import StackBlitzPreview from '../StackBlitzPreview/StackBlitzPreview';
3736
import { default as LinkComponent } from '../mdxComponents/Link';
@@ -249,7 +248,6 @@ function Site(props) {
249248
),
250249
},
251250
{ content: 'Contribute', url: '/contribute/' },
252-
{ content: 'Vote', url: '/vote/' },
253251
{ content: 'Blog', url: '/blog/' },
254252
]}
255253
/>
@@ -272,7 +270,6 @@ function Site(props) {
272270
</Container>
273271
}
274272
>
275-
<Route path="vote" element={<Vote />} />
276273
<Route path="app-shell" element={<Fragment />} />
277274
{pages.map((page) => {
278275
let path = page.path.replace('src/content/', '');

src/components/Vote/Vote.jsx

Lines changed: 0 additions & 27 deletions
This file was deleted.

src/components/Vote/Vote.scss

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/content/awesome-webpack.mdx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ A curated list of awesome webpack resources, libraries, tools and applications.
99

1010
## Webpack Ecosystem
1111

12-
**Remember to** [Cast your vote for upcoming Webpack features!](https://webpack.js.org/vote/)
13-
1412
### Support Webpack
1513

1614
- [Webpack Open Collective](https://opencollective.com/webpack) - Help support the teams ongoing development efforts.
@@ -170,7 +168,7 @@ _People passionate about Webpack (In no particular order)_
170168
- [Bytenode Plugin](https://github.com/herberttn/bytenode-webpack-plugin): Compile JavaScript into bytecode using bytenode. -- _Maintainer_: `Herbert Treis Neto` [![Github][githubicon]](https://github.com/herberttn)
171169
- [Chrome Extension Archive Webpack Plugin](https://github.com/KeisukeYamashita/chrome-extension-archive-webpack-plugin) Create archive file to publish Chrome Exentions to Chrome Web Store -- _Maintainer_: `KeisukeYamashita` [![Github][githubicon]](https://github.com/KeisukeYamashita)
172170
- [Layer-pack Webpack Plugin](https://github.com/layer-pack/layer-pack) Allow to glob imports file & directories, build mono repo apps via inheritable source code / npm packages & share webpack configs -- _Maintainer_: `Braun Nathanaël` [![Github][githubicon]](https://github.com/N8tz)
173-
- [webpack-typescript-directory-compile-plugin](https://github.com/ssigwart/webpack-typescript-directory-compile-plugin) Configure an source directory of typescript files and an output directory for JavaScript files. Each typescript file in the source directory and any newly added files will be compiled to individual JavaScript files. -- _Maintainer_: `Stephen Sigwart` [![Github][githubicon]](https://github.com/ssigwart)
171+
- [webpack-typescript-directory-compile-plugin](https://github.com/ssigwart/webpack-typescript-directory-compile-plugin) Configure an source directory of typescript files and an output directory for JavaScript files. Each typescript file in the source directory and any newly added files will be compiled to individual JavaScript files. -- _Maintainer_: `Stephen Sigwart` [![Github][githubicon]](https://github.com/ssigwart)
174172
- [CycloneDX Webpack Plugin](https://github.com/CycloneDX/cyclonedx-webpack-plugin#readme): Create CycloneDX Software Bill of Materials (SBOM) from webpack bundles at compile time. -- _Maintainer_: `OWASP CycloneDX Team` [![Github][githubicon]](https://github.com/CycloneDX)
175173

176174
### Webpack Tools
@@ -194,7 +192,6 @@ _People passionate about Webpack (In no particular order)_
194192
- [Webpack Dev Server Firewall](https://github.com/funbox/webpack-dev-server-firewall): Prevents access to dev server from unknown IPs. -- _Maintainer_: `Igor Adamenko` [![Github][githubicon]](https://github.com/igoradamenko) [![Twitter][twittericon]](https://twitter.com/igoradamenko)
195193
- [RelativeCI](https://relative-ci.com): Run in-depth bundle analyses on every build and monitor webpack bundle size, assets, modules, and packages. [![Github][githubicon]](https://github.com/relative-ci)
196194

197-
198195
## Research & Training
199196

200197
### Articles
@@ -279,7 +276,7 @@ _People passionate about Webpack (In no particular order)_
279276
- [React Universally](https://github.com/ctrlplusb/react-universally) - A starter kit giving you the minimum for a production ready universal react application.
280277
- [Razzle Material-UI Styled Example](https://github.com/kireerik/razzle-material-ui-styled-example) - With Styled Components using Express with compression from [Erik Engi](https://github.com/kireerik).
281278
- [Read](https://github.com/logustra/read) - A highly scalable react boilerplate from [logustra](https://github.com/logustra)
282-
- [@route-resource-preload/webpack-plugin](https://github.com/AwesomeDevin/route-resource-preload/tree/main/packages/webpack-plugin) - Focus on improving the first screen loading speed of applications and providing the best user experience, inspiration comes from the preloading of NextJS from [Devin Deng](https://github.com/AwesomeDevin).
279+
- [@route-resource-preload/webpack-plugin](https://github.com/AwesomeDevin/route-resource-preload/tree/main/packages/webpack-plugin) - Focus on improving the first screen loading speed of applications and providing the best user experience, inspiration comes from the preloading of NextJS from [Devin Deng](https://github.com/AwesomeDevin).
283280

284281
#### Vue
285282

webpack.ssg.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { fileURLToPath } from 'url';
1717
const __filename = fileURLToPath(import.meta.url);
1818

1919
// content tree to path array
20-
const paths = [...flattenContentTree(contentTree), '/vote', '/app-shell'];
20+
const paths = [...flattenContentTree(contentTree), '/app-shell'];
2121

2222
export default (env) =>
2323
merge(common(env), {

0 commit comments

Comments
 (0)