Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: AssemblyScript/assemblyscript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.27.16
Choose a base ref
...
head repository: AssemblyScript/assemblyscript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.27.17
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on Nov 9, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7b4a5c3 View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0412030 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6eb69a8 View commit details
  4. fix: placeholder commit for aspublish (#2789)

    The commit that fixed the regression didn't start with "fix:" and such,
    so this commit accounts for that instead.
    CountBleck authored Nov 9, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f055bff View commit details
Showing with 16 additions and 9 deletions.
  1. +3 −0 .github/workflows/publish.yml
  2. +7 −0 .gitignore
  3. +0 −6 dist/.gitignore
  4. +6 −3 scripts/build.js
3 changes: 3 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: Publish
on:
# Note that the main branch will be used regardless of the branch chosen
# in the web interface.
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -9,3 +9,10 @@ raw/
cli/index.generated.js
src/diagnosticMessages.generated.ts
coverage/

dist/*.generated.d.ts
dist/*.map
dist/asc.js
dist/assemblyscript.js
dist/importmap.json
dist/web.js
6 changes: 0 additions & 6 deletions dist/.gitignore

This file was deleted.

9 changes: 6 additions & 3 deletions scripts/build.js
Original file line number Diff line number Diff line change
@@ -215,9 +215,12 @@ const common = {

async function invokeBuild(options) {
const ctx = await esbuild.context(options);
if (watch) await ctx.watch();
else await ctx.rebuild();
ctx.dispose();
if (watch) {
await ctx.watch();
} else {
await ctx.rebuild();
ctx.dispose();
}
}

const srcBuild = invokeBuild({