Skip to content

Commit d4a5dcd

Browse files
committed
Creation of RSC 3.6 and 3.7 packages.
1 parent 73baf3f commit d4a5dcd

Some content is hidden

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

49 files changed

+946
-99
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ for large scale TypeScript monorepos.
5656
| [/stack/rush-stack-compiler-3.3](./stack/rush-stack-compiler-3.3/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.3.svg)](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.3) | [changelog](./stack/rush-stack-compiler-3.3/CHANGELOG.md) | [@microsoft/rush-stack-compiler-3.3](https://www.npmjs.com/package/@microsoft/rush-stack-compiler-3.3) |
5757
| [/stack/rush-stack-compiler-3.4](./stack/rush-stack-compiler-3.4/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.4.svg)](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.4) | [changelog](./stack/rush-stack-compiler-3.4/CHANGELOG.md) | [@microsoft/rush-stack-compiler-3.4](https://www.npmjs.com/package/@microsoft/rush-stack-compiler-3.4) |
5858
| [/stack/rush-stack-compiler-3.5](./stack/rush-stack-compiler-3.5/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.5.svg)](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.5) | [changelog](./stack/rush-stack-compiler-3.5/CHANGELOG.md) | [@microsoft/rush-stack-compiler-3.5](https://www.npmjs.com/package/@microsoft/rush-stack-compiler-3.5) |
59+
| [/stack/rush-stack-compiler-3.6](./stack/rush-stack-compiler-3.6/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.6.svg)](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.6) | [changelog](./stack/rush-stack-compiler-3.6/CHANGELOG.md) | [@microsoft/rush-stack-compiler-3.6](https://www.npmjs.com/package/@microsoft/rush-stack-compiler-3.6) |
60+
| [/stack/rush-stack-compiler-3.7](./stack/rush-stack-compiler-3.7/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.7.svg)](https://badge.fury.io/js/%40microsoft%2Frush-stack-compiler-3.7) | [changelog](./stack/rush-stack-compiler-3.7/CHANGELOG.md) | [@microsoft/rush-stack-compiler-3.7](https://www.npmjs.com/package/@microsoft/rush-stack-compiler-3.7) |
5961
| [/webpack/loader-load-themed-styles](./webpack/loader-load-themed-styles/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Floader-load-themed-styles.svg)](https://badge.fury.io/js/%40microsoft%2Floader-load-themed-styles) | [changelog](./webpack/loader-load-themed-styles/CHANGELOG.md) | [@microsoft/loader-load-themed-styles](https://www.npmjs.com/package/@microsoft/loader-load-themed-styles) |
6062
| [/webpack/loader-raw-script](./webpack/loader-raw-script/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Floader-raw-script.svg)](https://badge.fury.io/js/%40microsoft%2Floader-raw-script) | [changelog](./webpack/loader-raw-script/CHANGELOG.md) | [@microsoft/loader-raw-script](https://www.npmjs.com/package/@microsoft/loader-raw-script) |
6163
| [/webpack/loader-set-webpack-public-path](./webpack/loader-set-webpack-public-path/) | [![npm version](https://badge.fury.io/js/%40microsoft%2Floader-set-webpack-public-path.svg)](https://badge.fury.io/js/%40microsoft%2Floader-set-webpack-public-path) | [changelog](./webpack/loader-set-webpack-public-path/CHANGELOG.md) | [@microsoft/loader-set-webpack-public-path](https://www.npmjs.com/package/@microsoft/loader-set-webpack-public-path) |
@@ -90,6 +92,8 @@ for large scale TypeScript monorepos.
9092
| [/build-tests/rush-stack-compiler-3.3-library-test](./build-tests/rush-stack-compiler-3.3-library-test/) | |
9193
| [/build-tests/rush-stack-compiler-3.4-library-test](./build-tests/rush-stack-compiler-3.4-library-test/) | |
9294
| [/build-tests/rush-stack-compiler-3.5-library-test](./build-tests/rush-stack-compiler-3.5-library-test/) | |
95+
| [/build-tests/rush-stack-compiler-3.6-library-test](./build-tests/rush-stack-compiler-3.6-library-test/) | |
96+
| [/build-tests/rush-stack-compiler-3.7-library-test](./build-tests/rush-stack-compiler-3.7-library-test/) | |
9397
| [/build-tests/rush-stack-library-test](./build-tests/rush-stack-library-test/) | |
9498
| [/build-tests/web-library-build-test](./build-tests/web-library-build-test/) | |
9599
| [/libraries/rushell](./libraries/rushell/) | Execute shell commands using a consistent syntax on every platform |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore everything by default
2+
**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
const build = require('@microsoft/node-library-build');
4+
5+
build.initialize(require('gulp'));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "rush-stack-compiler-3.6-library-test",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "lib/index.js",
6+
"license": "MIT",
7+
"private": true,
8+
"scripts": {
9+
"build": "gulp test --clean"
10+
},
11+
"devDependencies": {
12+
"@microsoft/node-library-build": "6.3.9",
13+
"@microsoft/rush-stack-compiler-3.6": "0.0.0",
14+
"@types/node": "8.10.54",
15+
"gulp": "~4.0.2"
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2+
// See LICENSE in the project root for license information.
3+
4+
export class TestClass {
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.6/includes/tsconfig-node.json"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@microsoft/rush-stack-compiler-3.6/includes/tslint.json"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Ignore everything by default
2+
**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
'use strict';
2+
3+
const build = require('@microsoft/node-library-build');
4+
5+
build.initialize(require('gulp'));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"name": "rush-stack-compiler-3.7-library-test",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "lib/index.js",
6+
"license": "MIT",
7+
"private": true,
8+
"scripts": {
9+
"build": "gulp test --clean"
10+
},
11+
"devDependencies": {
12+
"@microsoft/node-library-build": "6.3.9",
13+
"@microsoft/rush-stack-compiler-3.7": "0.0.0",
14+
"@types/node": "8.10.54",
15+
"gulp": "~4.0.2"
16+
}
17+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
2+
// See LICENSE in the project root for license information.
3+
4+
export class TestClass {
5+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "./node_modules/@microsoft/rush-stack-compiler-3.7/includes/tsconfig-node.json"
3+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "@microsoft/rush-stack-compiler-3.7/includes/tslint.json"
3+
}

common/config/rush/common-versions.json

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
"~3.2.4",
5757
"~3.4.3",
5858
"~3.5.3",
59+
"~3.6.4",
5960
"~3.7.2"
6061
]
6162
}

common/config/rush/nonbrowser-approved-packages.json

+8
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,14 @@
106106
"name": "@microsoft/rush-stack-compiler-3.5",
107107
"allowedCategories": [ "tests" ]
108108
},
109+
{
110+
"name": "@microsoft/rush-stack-compiler-3.6",
111+
"allowedCategories": [ "tests" ]
112+
},
113+
{
114+
"name": "@microsoft/rush-stack-compiler-3.7",
115+
"allowedCategories": [ "tests" ]
116+
},
109117
{
110118
"name": "@microsoft/rush-stack-compiler-shared",
111119
"allowedCategories": [ "libraries" ]

0 commit comments

Comments
 (0)