Skip to content

Commit f3795c2

Browse files
authored
Add proper repository link to test-data (#4392)
1 parent ffd445b commit f3795c2

File tree

4 files changed

+164
-1
lines changed

4 files changed

+164
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@less/root",
33
"private": true,
4-
"version": "4.5.1",
4+
"version": "5.0.0-alpha.1",
55
"description": "Less monorepo",
66
"homepage": "http://lesscss.org",
77
"scripts": {

packages/test-data/package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@
99
"contributors": [
1010
"The Core Less Team"
1111
],
12+
"bugs": {
13+
"url": "https://github.com/less/less.js/issues"
14+
},
15+
"repository": {
16+
"type": "git",
17+
"url": "https://github.com/less/less.js.git"
18+
},
1219
"license": "Apache-2.0",
1320
"gitHead": "1df9072ee9ebdadc791bf35dfb1dbc3ef9f1948f"
1421
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
output: [
3+
{
4+
collapseNesting: true
5+
},
6+
{
7+
file: 'v5/mixins.css'
8+
}
9+
]
10+
};
Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
.mixin {
2+
border: 1px solid black;
3+
}
4+
.mixout {
5+
border-color: orange;
6+
}
7+
.borders {
8+
border-style: dashed;
9+
}
10+
.mixin > * {
11+
border: do not match me;
12+
}
13+
#namespace .borders {
14+
border-style: dotted;
15+
}
16+
#namespace .biohazard {
17+
content: "death";
18+
}
19+
#namespace .biohazard .man {
20+
color: transparent;
21+
}
22+
#theme > .mixin {
23+
background-color: grey;
24+
}
25+
#container {
26+
color: black;
27+
border: 1px solid black;
28+
border-color: orange;
29+
background-color: grey;
30+
}
31+
#header .milk {
32+
color: inherit;
33+
border: 1px solid black;
34+
background-color: grey;
35+
}
36+
#header #cookie .chips {
37+
border-style: dotted;
38+
}
39+
#header #cookie .chips .calories {
40+
color: black;
41+
border: 1px solid black;
42+
border-color: orange;
43+
background-color: grey;
44+
}
45+
#header #cookie {
46+
border-style: dashed;
47+
}
48+
.secure-zone {
49+
color: transparent;
50+
}
51+
.direct {
52+
border-style: dotted;
53+
}
54+
.bo,
55+
.bar {
56+
width: 100%;
57+
}
58+
.bo {
59+
border: 1px;
60+
}
61+
.ar.bo.ca {
62+
color: black;
63+
}
64+
.jo.ki {
65+
background: none;
66+
}
67+
.amp.support {
68+
color: orange;
69+
}
70+
.amp.support .higher {
71+
top: 0px;
72+
}
73+
.amp.support.deeper {
74+
height: auto;
75+
}
76+
.extended {
77+
width: 100%;
78+
border: 1px;
79+
background: none;
80+
color: orange;
81+
}
82+
.extended .higher {
83+
top: 0px;
84+
}
85+
.extended.deeper {
86+
height: auto;
87+
}
88+
.extended {
89+
top: 0px;
90+
height: auto;
91+
}
92+
.do .re .mi .fa .sol .la .si {
93+
color: cyan;
94+
}
95+
.mutli-selector-parents {
96+
color: cyan;
97+
}
98+
.foo .bar {
99+
width: 100%;
100+
}
101+
.underParents {
102+
color: red;
103+
}
104+
.parent .underParents {
105+
color: red;
106+
}
107+
* + h1 {
108+
margin-top: 25px;
109+
}
110+
legend + h1 {
111+
margin-top: 0;
112+
}
113+
h1 + * {
114+
margin-top: 10px;
115+
}
116+
* + h2 {
117+
margin-top: 20px;
118+
}
119+
legend + h2 {
120+
margin-top: 0;
121+
}
122+
h2 + * {
123+
margin-top: 8px;
124+
}
125+
* + h3 {
126+
margin-top: 15px;
127+
}
128+
legend + h3 {
129+
margin-top: 0;
130+
}
131+
h3 + * {
132+
margin-top: 5px;
133+
}
134+
.error {
135+
background-image: "/a.png";
136+
background-position: center center;
137+
}
138+
.test-rule-rec .recursion {
139+
color: black;
140+
}
141+
.button {
142+
padding-left: 44px;
143+
}
144+
.button.large {
145+
padding-left: 40em;
146+
}

0 commit comments

Comments
 (0)