Skip to content

Commit 3175e5a

Browse files
holblinJean-Philippe Zolesio
andauthored
Release 4.4.4 (#492)
* Save WIP before formating with biome * Save changes (switch to npm and biome) * Improve all the docs and ensure the new bundle respect the ESM and CJS guidelines of attw * Update and improve the Changelog * Change format for the attw command * Remove node badge * Add pre-build script to clean the build folder --------- Co-authored-by: Jean-Philippe Zolesio <zolesio@adobe.com>
1 parent 58f0812 commit 3175e5a

45 files changed

Lines changed: 6821 additions & 5751 deletions

Some content is hidden

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

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.json

Lines changed: 0 additions & 3 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,6 @@ updates:
1010
schedule:
1111
interval: "daily"
1212
groups:
13-
parcel-packages:
14-
patterns:
15-
- "parcel"
16-
- "@parcel/*"
1713
jest-packages:
1814
patterns:
1915
- "jest"
@@ -26,4 +22,8 @@ updates:
2622
bytes-packages:
2723
patterns:
2824
- "bytes"
29-
- "@types/bytes"
25+
- "@types/bytes"
26+
rollup-packages:
27+
patterns:
28+
- "rollup"
29+
- "@rollup/*"

.github/workflows/npm-publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
- uses: actions/setup-node@v3
1414
with:
1515
node-version: 18
16-
cache: 'yarn'
16+
cache: 'npm'
1717
- name: install
18-
run: yarn install
19-
- run: yarn run test
18+
run: npm install
19+
- run: npm run test
2020
- uses: JS-DevTools/npm-publish@v1
2121
with:
2222
token: ${{ secrets.ADOBE_BOT_NPM_TOKEN }}

.github/workflows/npm-run-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/setup-node@v3
2626
with:
2727
node-version: ${{ matrix.node-version }}
28-
cache: 'yarn'
29-
- run: yarn install
30-
- run: yarn run build
31-
- run: yarn run test
28+
cache: 'npm'
29+
- run: npm install
30+
- run: npm run build
31+
- run: npm run test

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
node_modules
22
dist
3-
.parcel-cache
4-
yarn-error.log
3+
yarn-error.log
4+
.rollup.cache

.prettierrc.cjs

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.vscode/extensions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["biomejs.biome", "streetsidesoftware.code-spell-checker"]
3+
}

.vscode/settings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"editor.codeActionsOnSave": {
33
"source.fixAll.eslint": "explicit"
4-
}
5-
}
4+
},
5+
"cSpell.words": ["attw", "stringifier", "Stringifying"]
6+
}

0 commit comments

Comments
 (0)