Skip to content

Commit 065b439

Browse files
committed
(chore): fix windows builds
1 parent 32e3224 commit 065b439

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
"clean:dist": "rimraf dist",
1616
"clean:release": "rimraf release",
1717
"build": "webpack --display-error-details",
18-
"build:release": "NODE_ENV=production npm run build",
19-
"build:package": "NODE_ENV=package npm run build",
18+
"build:release": "SET NODE_ENV=production & npm run build",
19+
"build:package": "SET NODE_ENV=package & npm run build",
2020
"build:ts": "tsc",
2121
"build:aot": "ngc",
2222
"build:sass": "node-sass -o dist/ src/",

release/index.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/index.min.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

release/utils/sort.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/// <reference types="core-js" />
1+
22
import { SortType, SortDirection } from '../types';
33
/**
44
* Gets the next sort direction

0 commit comments

Comments
 (0)