Skip to content

Commit b08d4e9

Browse files
authored
Merge pull request #3066 from metacpan/haarg/deps-from-npm
use vendor libraries from npm and various fixes
2 parents 7f87e3b + 4380596 commit b08d4e9

File tree

179 files changed

+2631
-36828
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

179 files changed

+2631
-36828
lines changed

Dockerfile

+6-7
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ RUN \
1515
EOT
1616

1717
# not supported yet
18-
#COPY --parents build-assets.mjs root/static .
18+
#COPY --parents build-assets.mjs root/static ./
1919

2020
COPY build-assets.mjs ./
2121
COPY root/static root/static
@@ -41,7 +41,7 @@ WORKDIR /app/
4141
COPY cpanfile cpanfile.snapshot ./
4242
RUN \
4343
--mount=type=cache,target=/root/.perl-cpm,sharing=private \
44-
<<EOT /bin/bash -euo pipefail
44+
<<EOT
4545
cpm install --show-build-log-on-failure --resolver=snapshot
4646
EOT
4747

@@ -73,7 +73,7 @@ USER root
7373

7474
RUN \
7575
--mount=type=cache,target=/root/.perl-cpm \
76-
<<EOT /bin/bash -euo pipefail
76+
<<EOT
7777
cpm install --show-build-log-on-failure --resolver=snapshot --with-develop
7878
chown -R metacpan:users ./
7979
EOT
@@ -82,7 +82,6 @@ USER metacpan
8282

8383
################### Test Runner
8484
FROM develop AS test
85-
SHELL [ "/bin/bash", "-euo", "pipefail", "-c" ]
8685

8786
ENV NO_UPDATE_NOTIFIER=1
8887
ENV PLACK_ENV=
@@ -93,7 +92,7 @@ RUN \
9392
--mount=type=cache,target=/var/cache/apt,sharing=private \
9493
--mount=type=cache,target=/var/lib/apt/lists,sharing=private \
9594
--mount=type=cache,target=/root/.npm,sharing=private \
96-
<<EOT /bin/bash -euo pipefail
95+
<<EOT
9796
curl -fsSL https://deb.nodesource.com/setup_21.x | bash -
9897
apt-get update
9998
apt-get satisfy -y -f --no-install-recommends 'nodejs (>= 21.6.1)'
@@ -103,14 +102,14 @@ EOT
103102
COPY package.json package-lock.json ./
104103
RUN \
105104
--mount=type=cache,target=/root/.npm,sharing=private \
106-
<<EOT /bin/bash -euo pipefail
105+
<<EOT
107106
npm install --verbose --include=dev
108107
npm audit fix
109108
EOT
110109

111110
RUN \
112111
--mount=type=cache,target=/root/.perl-cpm \
113-
<<EOT /bin/bash -euo pipefail
112+
<<EOT
114113
cpm install --show-build-log-on-failure --resolver=snapshot --with-test
115114
EOT
116115

build-assets.mjs

+44-23
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,23 @@
22
"use strict";
33
import * as esbuild from 'esbuild'
44
import { lessLoader } from 'esbuild-plugin-less';
5-
import fs from 'fs';
5+
import { sassPlugin } from 'esbuild-sass-plugin';
6+
import { writeFile, opendir, unlink } from 'node:fs/promises';
7+
import path from 'node:path';
68
import parseArgs from 'minimist';
79

10+
const assets_dir = 'root/assets';
11+
812
const config = {
913
entryPoints: [
10-
'root/static/js/main.js',
14+
'root/static/js/main.mjs',
1115
'root/static/less/style.less',
16+
'root/static/scss/style.scss',
1217
],
1318
assetNames: '[name]-[hash]',
1419
entryNames: '[name]-[hash]',
15-
outdir: 'root/assets',
20+
format: 'esm',
21+
outdir: assets_dir,
1622
bundle: true,
1723
sourcemap: true,
1824
metafile: true,
@@ -26,37 +32,34 @@ const config = {
2632
},
2733
plugins: [
2834
lessLoader(),
35+
sassPlugin(),
2936
new class {
3037
name = 'metacpan-build';
3138

3239
setup(build) {
33-
build.onResolve(
34-
{ filter: /^(shCore|xregexp)$/ },
35-
args => ({ external: true }),
36-
);
40+
build.onStart(() => {
41+
console.log('building assets...')
42+
});
3743
build.onResolve(
3844
{ filter: /^\// },
3945
args => ({ external: true }),
4046
);
41-
build.onEnd(result => {
47+
build.onEnd(async result => {
4248
const metafile = result.metafile;
4349
if (metafile && metafile.outputs) {
4450
const files = Object.keys(metafile.outputs).sort()
45-
.map(file => file.replace(/^root\/assets\//, ''));
46-
fs.writeFile(
47-
'root/assets/assets.json',
48-
JSON.stringify(files),
49-
'utf8',
50-
(e) => {
51-
if (e) {
52-
console.log(e);
53-
}
54-
}
55-
);
56-
console.log('assets built');
57-
}
58-
else {
59-
console.log('asset build failure');
51+
.map(file => path.relative(assets_dir, file));
52+
try {
53+
await writeFile(
54+
path.join(assets_dir, 'assets.json'),
55+
JSON.stringify(files),
56+
'utf8',
57+
);
58+
}
59+
catch (e) {
60+
console.log(e);
61+
}
62+
console.log(`build complete (${files.filter(f => !f.match(/\.map$/)).join(' ')})`);
6063
}
6164
});
6265
}
@@ -68,11 +71,29 @@ const args = parseArgs(process.argv, {
6871
boolean: [
6972
'watch',
7073
'minify',
74+
'clean',
7175
],
7276
});
7377
if (args.minify) {
7478
config.minify = true;
7579
}
80+
if (args.clean) {
81+
82+
for await (const file of await opendir(assets_dir, { withFileTypes: true })) {
83+
const filePath = path.join(file.parentPath, file.name);
84+
if (file.name.match(/^\./)) {
85+
// ignore these
86+
}
87+
else if (!file.isFile()) {
88+
console.log(`cowardly refusing to remove non-file ${filePath}`);
89+
}
90+
else {
91+
console.log(`deleting ${filePath}`);
92+
await unlink(filePath);
93+
}
94+
}
95+
}
96+
7697
const ctx = await esbuild.context(config);
7798
if (args.watch) {
7899
await ctx.watch();

lib/MetaCPAN/Web/Controller/Account/Favorite.pm

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ sub add : Local : Args(0) {
2222
}
2323

2424
if ($json) {
25-
$c->res->code(400) if ( $res->{error} );
25+
$c->res->code(400) if $res->{error};
2626
$c->stash->{json}{success} = $res->{error} ? \0 : \1;
2727
}
2828
else {
2929
$c->res->redirect(
3030
$res->{error}
31-
? $c->req->referer
32-
: $c->uri_for('/account/turing/index')
31+
? $c->uri_for('/account/turing/index')
32+
: $c->req->referer
3333
);
3434
}
3535
}

0 commit comments

Comments
 (0)