Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FLUID-6785: add package-lock.json to version control #1115

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
13 changes: 1 addition & 12 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"

- uses: actions/cache@v4
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
cache: npm

- name: Install Node.js dependencies
run: npm install
Expand Down
13 changes: 1 addition & 12 deletions .github/workflows/ci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x

- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"

- uses: actions/cache@v4
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
cache: npm

- name: Install Node.js dependencies
run: npm install
Expand Down
13 changes: 1 addition & 12 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

- name: Get npm cache directory
id: npm-cache
run: |
echo "::set-output name=dir::$(npm config get cache)"

- uses: actions/cache@v4
with:
path: ${{ steps.npm-cache.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
cache: npm

- name: Install Node.js dependencies
run: npm install
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
/tests/lib/jquery-simulate/
/tests/lib/sinon/
/tests/lib/xhr-mock/
package-lock.json
.project
report.tap
coverage
Expand Down
10 changes: 4 additions & 6 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ categorized by license:

### Apache 2.0

* [`fluid.load.scripts` is based on Jake Archibald's script loading example](
https://www.html5rocks.com/en/tutorials/speed/script-loading/#toc-dom-rescue)
* [`fluid.load.scripts` is based on Jake Archibald's script loading example](https://www.html5rocks.com/en/tutorials/speed/script-loading/#toc-dom-rescue)
* [Roboto Slab](https://github.com/googlefonts/robotoslab)
* via [Fontsource](https://fontsource.org/fonts/roboto-slab)

Expand Down Expand Up @@ -176,13 +175,12 @@ categorized by license:

### zlib/libpng License

* [fastXmlPull is based on XML for Script's Fast Pull Parser v3.1](
https://wiki.fluidproject.org/display/fluid/Licensing+for+fastXmlPull.js)
* [fastXmlPull is based on XML for Script's Fast Pull Parser v3.1](https://wiki.fluidproject.org/display/fluid/Licensing+for+fastXmlPull.js)

## Documentation

Documentation and tutorials can found on the [Infusion Documentation](
https://docs.fluidproject.org/infusion/development/) site.
Documentation and tutorials can found on the [Infusion Documentation](https://docs.fluidproject.org/infusion/development/)
site.

## Supported Browsers

Expand Down
Loading
Loading