We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d715a2 commit 19cfb4eCopy full SHA for 19cfb4e
.gitignore
@@ -22,6 +22,7 @@ tmp
22
*.js.map
23
24
# Or type definitions we mirror from github
25
+# (NB: these lines are removed in publish-build-artifacts.sh)
26
**/typings/**/*.d.ts
27
**/typings/tsd.cached.json
28
scripts/publish/publish-build-artifacts.sh
@@ -41,7 +41,7 @@ function publishRepo {
41
# copy over build artifacts into the repo directory
42
rm -rf $REPO_DIR/*
43
cp -R $ARTIFACTS_DIR/* $REPO_DIR/
44
- cp .gitignore $REPO_DIR/
+ grep -v /typings/ .gitignore > $REPO_DIR/.gitignore
45
echo `date` > $REPO_DIR/BUILD_INFO
46
echo $SHA >> $REPO_DIR/BUILD_INFO
47
0 commit comments