File tree 5 files changed +15576
-24
lines changed
5 files changed +15576
-24
lines changed Original file line number Diff line number Diff line change @@ -12,3 +12,4 @@ packages/*/public
12
12
! packages /core /test /patterns /testDependencyGraph.json
13
13
lerna-debug.log
14
14
packages /edition-node-gulp /dependencyGraph.json
15
+ packages /uikit-workshop /dist
Original file line number Diff line number Diff line change @@ -4,19 +4,21 @@ addons:
4
4
chrome : stable
5
5
6
6
before_install :
7
- - phantomjs --version
7
+ # version lifted from `.nvmrc`
8
+ - nvm install
9
+ - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.19.0
10
+ - export PATH="$HOME/.yarn/bin:$PATH"
8
11
9
12
before_script :
10
- -
npm install -g [email protected]
11
- - npm run setup
12
- - lerna add @pattern-lab/engine-mustache --scope=@pattern-lab/core
13
- - lerna add @pattern-lab/engine-handlebars --scope=@pattern-lab/core
14
- - lerna add @pattern-lab/engine-underscore --scope=@pattern-lab/core
15
- - lerna add @pattern-lab/engine-liquid --scope=@pattern-lab/core
16
- - lerna add @pattern-lab/engine-twig --scope=@pattern-lab/core
17
- - lerna add @pattern-lab/engine-react --scope=@pattern-lab/core
13
+ - yarn run setup
14
+ - npx lerna add @pattern-lab/engine-mustache --scope=@pattern-lab/core
15
+ - npx lerna add @pattern-lab/engine-handlebars --scope=@pattern-lab/core
16
+ - npx lerna add @pattern-lab/engine-underscore --scope=@pattern-lab/core
17
+ - npx lerna add @pattern-lab/engine-liquid --scope=@pattern-lab/core
18
+ - npx lerna add @pattern-lab/engine-twig --scope=@pattern-lab/core
19
+ - npx lerna add @pattern-lab/engine-react --scope=@pattern-lab/core
18
20
19
- script : travis_wait npm run test
21
+ script : travis_wait yarn run test
20
22
21
23
branches :
22
24
only :
Original file line number Diff line number Diff line change 1
1
{
2
2
"lerna" : " 3.11.0" ,
3
+ "version" : " 0.0.0" ,
3
4
"packages" : [
4
5
" packages/*"
5
6
],
6
- "version" : " independent" ,
7
7
"command" : {
8
8
"init" : {
9
9
"exact" : true
10
10
},
11
- "bootstrap" : {
12
- "hoist" : [
13
- " tap" ,
14
- " eslin*" ,
15
- " husky" ,
16
- " prettier" ,
17
- " pretty-quick" ,
18
- " babel-eslint"
19
- ]
20
- },
21
11
"publish" : {
22
- "allowBranch" : " master"
12
+ "allowBranch" : [
13
+ " master" ,
14
+ " dev"
15
+ ],
16
+ "conventionalCommits" : true ,
17
+ "gitReset" : true ,
18
+ "includeMergedTags" : true ,
19
+ "noCommitHooks" : true ,
20
+ "verifyAccess" : true
21
+ },
22
+ "changed" : {
23
+ "includeMergedTags" : true
23
24
}
24
25
},
26
+ "ignoreChanges" : [
27
+ " **/__fixtures__/**" ,
28
+ " **/__tests__/**" ,
29
+ " **/*.md" ,
30
+ " **/__snapshots__/**"
31
+ ],
32
+ "npmClient" : " yarn" ,
25
33
"npmClientArgs" : [
34
+ " --ignore-optional" ,
26
35
" --registry=https://registry.npmjs.org/"
27
- ]
36
+ ],
37
+ "useWorkspaces" : true
28
38
}
Original file line number Diff line number Diff line change 1
1
{
2
+ "workspaces" : {
3
+ "packages" : [
4
+ " packages/*"
5
+ ],
6
+ "nohoist" : [
7
+ " @pattern-lab/engine-*" ,
8
+ " **/@pattern-lab/engine-*" ,
9
+ " **/@pattern-lab/uikit-workshop"
10
+ ]
11
+ },
2
12
"dependencies" : {
3
13
"@babel/plugin-proposal-decorators" : " ^7.4.4" ,
4
14
"@babel/plugin-syntax-jsx" : " ^7.2.0" ,
8
18
"eslint-config-prettier" : " ^6.0.0" ,
9
19
"eslint-plugin-import" : " ^2.18.2" ,
10
20
"eslint-plugin-prettier" : " ^3.1.0" ,
11
- "lerna" : " 3.11.0" ,
12
21
"prettier" : " ^1.14.3" ,
22
+ "lerna" : " 3.17.0" ,
13
23
"pretty-quick" : " ^1.11.1" ,
14
24
"auto" : " ^7.8.0"
15
25
},
You can’t perform that action at this time.
0 commit comments