Skip to content
This repository was archived by the owner on Nov 30, 2023. It is now read-only.

Commit fea4828

Browse files
committed
1 parent 04f2338 commit fea4828

File tree

4 files changed

+529
-5
lines changed

4 files changed

+529
-5
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ Thumbs.db
77
*.class
88
*.tgz
99

10+
containers-readmes
11+
1012
## Ignore Visual Studio temporary files, build results, and
1113
## files generated by popular Visual Studio add-ons.
1214
##

azure-pipelines.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ steps:
99
inputs:
1010
versionSpec: "10.15.1"
1111

12+
- task: geeklearningio.gl-vsts-tasks-yarn.yarn-installer-task.YarnInstaller@2
13+
inputs:
14+
versionSpec: "1.10.1"
15+
1216
- script: |
1317
set -e
1418

package.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,22 @@
22
"name": "vscode-dev-containers",
33
"version": "0.5.0",
44
"description": "VS Code Dev Containers: Definitions and Templates",
5-
"files": [
6-
"containers",
7-
"repository-containers"
8-
],
95
"repository": {
106
"type": "git",
117
"url": "https://github.com/Microsoft/vscode-dev-containers.git"
128
},
139
"author": "Microsoft Corporation",
14-
"license": "SEE LICENSE IN LICENSE.md"
10+
"license": "SEE LICENSE IN LICENSE.md",
11+
"files": [
12+
"containers",
13+
"containers-readmes",
14+
"repository-containers"
15+
],
16+
"scripts": {
17+
"prepack": "rimraf containers-readmes && copyfiles --up 1 containers/**/README.md containers-readmes"
18+
},
19+
"devDependencies": {
20+
"copyfiles": "^2.1.0",
21+
"rimraf": "^2.6.3"
22+
}
1523
}

0 commit comments

Comments
 (0)