Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@
# Set default behavior to automatically normalize line endings.
###############################################################################
* text=auto
# Don't allow people to merge changes to these generated files, because the result
# may be invalid. You need to run "rush update" again.
shrinkwrap.yaml merge=binary
npm-shrinkwrap.json merge=binary
yarn.lock merge=binary

*.ts linguist-detectable=true
*.js linguist-detectable=false
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,15 @@ jobs:

strategy:
matrix:
node-version: [ 18.x, 20.x ]
node-version: [ 20.x, 22.x ]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Update rush shrinkwrap dependencies (for different node versions)
run: node common/scripts/install-run-rush.js update --full --recheck
- run: npm install rollup -g
- run: npm install grunt-cli
- run: npm install
- run: node common/scripts/install-run-rush.js check
- run: node common/scripts/install-run-rush.js update --full --recheck
- run: npm run build --verbose
timeout-minutes: 10
- run: npm run test --verbose
Expand Down
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ rollup/types/
# Output of 'npm pack'
*.tgz


# Rush files
common/temp/**
**/.rush/temp/**
package-deps.json
package-lock.json

# test output
**/.rush/temp/**
# test output
10 changes: 3 additions & 7 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,16 @@ We strongly welcome and encourage contributions to this project. If making a lar

```sh
npm install
npm install -g @microsoft/rush
```

3. Navigate to the root folder and update rush dependencies
3. Build and create docs

```sh
rush update --recheck --full
npm run build
```

4. Build, lint, create docs and run tests
4. Run tests

```sh
rush build
npm run test
```

If you are changing package versions or adding/removing any package dependencies, run<br>**```rush update --purge --recheck --full```**<br>before building. Please check-in any files that change under common\ folder.
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,24 +67,20 @@ class ExampleClass extends BaseClass {

```sh
npm install
npm install -g @microsoft/rush
```

2. Navigate to the root folder and update rush dependencies
2. Build and create docs

```sh
rush update
npm run build
```

3. Build, lint, create docs and run tests
3. Run tests

```sh
rush build
npm run test
```

If you are changing package versions or adding/removing any package dependencies, run<br>**```rush update --purge --recheck --full```**<br>before building. Please check-in any files that change under common\ folder.

## Performance

The minified version of this adds a negligible amount of code and loadtime to your source code and by using this library, your generated code can be better minified as it removes most references of Classname.prototype.XXX methods from the generated code.
Expand Down
18 changes: 0 additions & 18 deletions common/config/rush/command-line.json

This file was deleted.

45 changes: 0 additions & 45 deletions common/config/rush/common-versions.json

This file was deleted.

Loading
Loading