Skip to content

Commit

Permalink
(chore): fix windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
amcdnl committed Nov 9, 2016
1 parent 32e3224 commit 065b439
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"clean:dist": "rimraf dist",
"clean:release": "rimraf release",
"build": "webpack --display-error-details",
"build:release": "NODE_ENV=production npm run build",
"build:package": "NODE_ENV=package npm run build",
"build:release": "SET NODE_ENV=production & npm run build",
"build:package": "SET NODE_ENV=package & npm run build",
"build:ts": "tsc",
"build:aot": "ngc",
"build:sass": "node-sass -o dist/ src/",
Expand Down
2 changes: 2 additions & 0 deletions release/index.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions release/index.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion release/utils/sort.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// <reference types="core-js" />

import { SortType, SortDirection } from '../types';
/**
* Gets the next sort direction
Expand Down

0 comments on commit 065b439

Please sign in to comment.