Skip to content
This repository was archived by the owner on Dec 3, 2025. It is now read-only.

Commit f059b9c

Browse files
author
Martynas Žilinskas
authored
Merge pull request #26 from reactway/dev
Dev
2 parents e9e1e49 + 0ebdb95 commit f059b9c

82 files changed

Lines changed: 78807 additions & 12866 deletions

File tree

Some content is hidden

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

.ci/build.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
trigger: none
2+
pr: none
3+
4+
pool:
5+
vmImage: "ubuntu-latest"
6+
7+
steps:
8+
- task: NodeTool@0
9+
inputs:
10+
versionSpec: "10.x"
11+
displayName: "Install Node.js"
12+
13+
- script: |
14+
npm install
15+
npm run bootstrap
16+
displayName: "npm install and bootstrap"
17+
18+
- script: |
19+
npm run build
20+
displayName: "npm run build"
21+
22+
- script: |
23+
npm test
24+
displayName: "npm test"
25+
26+
- script: |
27+
npx lerna version 0.0.0-canary.$(git rev-parse --short HEAD) --no-push --no-git-tag-version --no-commit-hooks -y
28+
npm run pack
29+
displayName: "Set canary version and pack"
30+
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/dev'))
31+
32+
- script: |
33+
npm run pack
34+
displayName: "npm run pack"
35+
36+
- script: |
37+
mkdir $(Build.ArtifactStagingDirectory)/packages
38+
mv packages/**/*.tgz $(Build.ArtifactStagingDirectory)/packages
39+
displayName: "Move tgz to artifacts folder"
40+
41+
- task: PublishBuildArtifacts@1
42+
displayName: "Publish Artifact: packages"
43+
inputs:
44+
PathtoPublish: "$(Build.ArtifactStagingDirectory)/packages"
45+
ArtifactName: packages
46+
47+
- task: PublishBuildArtifacts@1
48+
displayName: "Publish Artifact: lerna.json"
49+
inputs:
50+
PathtoPublish: "$(System.DefaultWorkingDirectory)/lerna.json"
51+
ArtifactName: lerna

.ci/pr.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
trigger: none
2+
pr: none
3+
4+
pool:
5+
vmImage: "ubuntu-latest"
6+
7+
steps:
8+
- task: NodeTool@0
9+
inputs:
10+
versionSpec: "10.x"
11+
displayName: "Install Node.js"
12+
13+
- script: |
14+
npm install
15+
npm run bootstrap
16+
displayName: "npm install and bootstrap"
17+
18+
- script: |
19+
npm run build
20+
displayName: "npm run build"
21+
22+
- script: |
23+
npm test
24+
displayName: "npm test"

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @reactway/webpack-builder
22

3+
[![Build Status](https://img.shields.io/azure-devops/build/reactway/reactway/15/master.svg?logo=azuredevops)](https://dev.azure.com/reactway/ReactWay/_build/latest?definitionId=15&branchName=master)
4+
35
A tool to create webpack config easier using @reactway/webpack-builder plugins.
46

57
## Packages

common/config/rush/.npmrc

Lines changed: 0 additions & 12 deletions
This file was deleted.

common/config/rush/command-line.json

Lines changed: 0 additions & 202 deletions
This file was deleted.

common/config/rush/common-versions.json

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)