diff options
| author | XhmikosR <[email protected]> | 2018-12-05 11:38:55 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-12-05 11:38:55 +0200 |
| commit | e184c11618ef040864c2fb1b38f81d8df595aacf (patch) | |
| tree | 3611313862675db6dab106f0b2eea00c7f916dc4 /build | |
| parent | 3007d4b4353fd0b8f3f65d660e19168e8400ee20 (diff) | |
| parent | 1a171b80ab1b46f59cfd727a7e5f8a10fc43b189 (diff) | |
| download | bootstrap-e184c11618ef040864c2fb1b38f81d8df595aacf.tar.xz bootstrap-e184c11618ef040864c2fb1b38f81d8df595aacf.zip | |
Merge branch 'v4-dev' into stretched-link
Diffstat (limited to 'build')
| -rw-r--r-- | build/.eslintrc.json | 2 | ||||
| -rw-r--r-- | build/banner.js | 2 | ||||
| -rw-r--r-- | build/build-plugins.js | 2 | ||||
| -rwxr-xr-x | build/change-version.js | 2 | ||||
| -rw-r--r-- | build/generate-sri.js | 2 | ||||
| -rw-r--r-- | build/postcss.config.js | 2 | ||||
| -rw-r--r-- | build/rollup.config.js | 2 | ||||
| -rwxr-xr-x | build/ship.sh | 2 | ||||
| -rw-r--r-- | build/vnu-jar.js | 2 |
9 files changed, 16 insertions, 2 deletions
diff --git a/build/.eslintrc.json b/build/.eslintrc.json index 220b6e1e5..76e7f37b6 100644 --- a/build/.eslintrc.json +++ b/build/.eslintrc.json @@ -4,7 +4,7 @@ "node": true }, "parserOptions": { - "sourceType": "module" + "sourceType": "script" }, "extends": "../.eslintrc.json", "rules": { diff --git a/build/banner.js b/build/banner.js index 93935bfcb..915117837 100644 --- a/build/banner.js +++ b/build/banner.js @@ -1,3 +1,5 @@ +'use strict' + const path = require('path') const pkg = require(path.resolve(__dirname, '../package.json')) const year = new Date().getFullYear() diff --git a/build/build-plugins.js b/build/build-plugins.js index ec337f03e..3240ee5d0 100644 --- a/build/build-plugins.js +++ b/build/build-plugins.js @@ -5,6 +5,8 @@ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ +'use strict' + const path = require('path') const rollup = require('rollup') const babel = require('rollup-plugin-babel') diff --git a/build/change-version.js b/build/change-version.js index 192c62710..7102dc083 100755 --- a/build/change-version.js +++ b/build/change-version.js @@ -7,6 +7,8 @@ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ +'use strict' + const fs = require('fs') const path = require('path') const sh = require('shelljs') diff --git a/build/generate-sri.js b/build/generate-sri.js index 692909770..cd80ce719 100644 --- a/build/generate-sri.js +++ b/build/generate-sri.js @@ -10,6 +10,8 @@ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ +'use strict' + const crypto = require('crypto') const fs = require('fs') const path = require('path') diff --git a/build/postcss.config.js b/build/postcss.config.js index 7394ba382..157291ffd 100644 --- a/build/postcss.config.js +++ b/build/postcss.config.js @@ -1,3 +1,5 @@ +'use strict' + module.exports = (ctx) => ({ map: ctx.file.dirname.includes('examples') ? false : { inline: false, diff --git a/build/rollup.config.js b/build/rollup.config.js index c8acf7a9e..e81a07ef5 100644 --- a/build/rollup.config.js +++ b/build/rollup.config.js @@ -1,3 +1,5 @@ +'use strict' + const path = require('path') const babel = require('rollup-plugin-babel') const resolve = require('rollup-plugin-node-resolve') diff --git a/build/ship.sh b/build/ship.sh index 9b94d8bae..289284383 100755 --- a/build/ship.sh +++ b/build/ship.sh @@ -36,7 +36,7 @@ npm run release-version "$current_version" "$1" # Build release printf "\n%s=======================================================%s" $magenta $end -printf "\n%sBuilding release..%s" $magenta $end +printf "\n%sBuilding release...%s" $magenta $end printf "\n%s=======================================================\n%s" $magenta $end npm run release diff --git a/build/vnu-jar.js b/build/vnu-jar.js index 362dd3c30..b990ba7b7 100644 --- a/build/vnu-jar.js +++ b/build/vnu-jar.js @@ -7,6 +7,8 @@ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ +'use strict' + const childProcess = require('child_process') const vnu = require('vnu-jar') |
