Skip to content

Commit

Permalink
Merge pull request #160 from fabric-ds/next
Browse files Browse the repository at this point in the history
Release: Wednesday 12th October
  • Loading branch information
digitalsadhu authored Oct 12, 2022
2 parents 1d135eb + 04f1fd6 commit 2b8fce5
Show file tree
Hide file tree
Showing 29 changed files with 57,174 additions and 182 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
uses: actions/checkout@v3
- name: Install Dependencies
run: |
yarn
npm install
- name: Build Packages
run: |
yarn build
npm run build
- name: Build Docs
run: |
yarn docs:build
npm run docs:build
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,16 +20,16 @@ jobs:
with:
node-version: '16.x'
- name: Install dependencies
run: yarn install --frozen-lockfile
run: npm install
- name: Build
run: yarn build
run: npm run build
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
run: npx semantic-release
- name: Eik login and publish
run: yarn eik:login -k $EIK_TOKEN && yarn eik:publish || true
run: npm run eik:login -- -k $EIK_TOKEN && npm run eik:publish || true
env:
EIK_TOKEN: ${{ secrets.EIK_TOKEN }}
312 changes: 197 additions & 115 deletions CHANGELOG.md

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion esbuild.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,12 @@ const versions = new Map([

const version = process.argv[2];
const reactVersions = Array.from(versions.keys());
ok(reactVersions.includes(version), `Version argument is required. Must be one of: ${reactVersions.join(',')}. Eg. 'node esbuild.mjs 18'`);
ok(
reactVersions.includes(version),
`Version argument is required. Must be one of: ${reactVersions.join(
',',
)}. Eg. 'node esbuild.mjs 18'`,
);

await eik.load({
urls: [`https://assets.finn.no/map/react/${versions.get(version)}`],
Expand Down
Loading

0 comments on commit 2b8fce5

Please sign in to comment.