We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8335e0 commit 825791eCopy full SHA for 825791e
src/projspec/proj/node.py
@@ -112,8 +112,10 @@ def parse0(self):
112
class Yarn(Node):
113
"""A node project that uses `yarn` for building"""
114
115
+ spec_doc = "https://yarnpkg.com/configuration/yarnrc"
116
+
117
def match(self):
- return "yarn.lock" in self.proj.basenames
118
+ return ".yarnrc.yml" in self.proj.basenames
119
120
def parse(self):
121
from projspec.content.environment import Environment, Stack, Precision
0 commit comments