Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mweststrate committed Apr 14, 2020
1 parent fb23888 commit 64dd241
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
paths:
- node_modules

- run: yarn small-build
- run: yarn build

- persist_to_workspace:
root: .
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async function main() {
gitUser = resp.gitUser

console.log("Starting build...")
run("npm run small-build")
run("npm run build")
console.log("Build is done")

// Check registry data
Expand Down
1 change: 0 additions & 1 deletion src/types/observablemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,6 @@ export class ObservableMap<K = any, V = any>
}
}

/* 'var' fixes small-build issue */
export const isObservableMap = createInstanceofPredicate("ObservableMap", ObservableMap) as (
thing: any
) => thing is ObservableMap<any, any>

0 comments on commit 64dd241

Please sign in to comment.