We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
yarn
1 parent ee38731 commit 0554c77Copy full SHA for 0554c77
MANIFEST.SKIP
@@ -49,3 +49,9 @@ jest.config.js
49
Dockerfile
50
Dockerfile.dev
51
.eslintignore
52
+.vscode
53
+.yarnclean
54
+config.yml
55
+
56
+_Inline
57
Makefile.PL
@@ -2,6 +2,12 @@ use strict;
2
use warnings;
3
use ExtUtils::MakeMaker;
4
5
+if(!`which yarn`) {
6
+ die "yarn is not installed. Please install yarn to build this project.\n";
7
+}
8
+print `yarn`;
9
+print `yarn build --no-watch`;
10
11
# Normalize version strings like 6.30_02 to 6.3002,
12
# so that we can do numerical comparisons on it.
13
my $eumm_version = $ExtUtils::MakeMaker::VERSION;
0 commit comments