Changeset 50646 for branches/3.8
- Timestamp:
- 04/02/2021 04:05:53 PM (4 years ago)
- Location:
- branches/3.8
- Files:
-
- 1 added
- 1 deleted
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8
- Property svn:mergeinfo changed
/trunk merged: 50379,50387,50416,50432,50435-50436,50444,50446,50473-50474,50476,50479,50485-50487,50545,50590
- Property svn:mergeinfo changed
-
branches/3.8/.github/workflows/coding-standards.yml
r50323 r50646 2 2 3 3 on: 4 # JSHint was introduced in WordPress 3.8. 5 # PHPCS checking was introduced in WordPress 5.1. 4 6 push: 5 7 branches: 6 8 - master 7 # JSHint was introduced in WordPress 3.8. 8 # PHPCS checking was introduced in WordPress 5.1. 9 - trunk 9 10 - '3.[89]' 10 11 - '[4-9].[0-9]' … … 13 14 - '[4-9].[0-9]*' 14 15 pull_request: 16 branches: 17 - master 18 - trunk 19 - '3.[89]' 20 - '[4-9].[0-9]' 21 paths: 22 # Any change to a PHP or JavaScript file should run checks. 23 - '**.js' 24 - '**.php' 25 # These files configure NPM. Changes could affect the outcome. 26 - 'package*.json' 27 # These files configure Composer. Changes could affect the outcome. 28 - 'composer.*' 29 # This file configures JSHint. Changes could affect the outcome. 30 - '.jshintrc' 31 # This file configures PHPCS. Changes could affect the outcome. 32 - 'phpcs.xml.dist' 33 # Changes to workflow files should always verify all workflows are successful. 34 - '.github/workflows/*.yml' 35 workflow_dispatch: 15 36 16 37 jobs: … … 37 58 steps: 38 59 - name: Checkout repository 39 uses: actions/checkout@ v260 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 40 61 41 62 - name: Log debug information … … 47 68 48 69 - name: Install NodeJS 49 uses: actions/setup-node@ v170 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 50 71 with: 51 72 node-version: 14 52 73 53 74 - name: Cache NodeJS modules 54 uses: actions/cache@ v275 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 55 76 env: 56 77 cache-name: cache-node-modules … … 59 80 path: ~/.npm 60 81 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 61 restore-keys: |62 ${{ runner.os }}-npm-63 82 64 83 - name: Log debug information … … 68 87 69 88 - name: Install Dependencies 70 run: np x install-changed --install-command="npm ci"89 run: npm ci 71 90 72 91 - name: Run JSHint -
branches/3.8/.github/workflows/end-to-end-tests.yml
r50323 r50646 2 2 3 3 on: 4 # The end to end test suite was introduced in WordPress 5.3. 4 5 push: 5 6 branches: 6 7 - master 7 # The end to end test suite was introduced in WordPress 5.3.8 - trunk 8 9 - '5.[3-9]' 9 10 - '[6-9].[0-9]' … … 12 13 - '[6-9].[0-9]*' 13 14 pull_request: 15 branches: 16 - master 17 - trunk 18 - '5.[3-9]' 19 - '[6-9].[0-9]' 20 workflow_dispatch: 14 21 15 22 env: … … 43 50 - name: Cancel previous runs of this workflow (pull requests only) 44 51 if: ${{ github.event_name == 'pull_request' }} 45 uses: styfle/cancel-workflow-action@0.5.0 46 with: 47 access_token: ${{ github.token }} 52 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.0 48 53 49 54 - name: Configure environment variables … … 53 58 54 59 - name: Checkout repository 55 uses: actions/checkout@ v260 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 56 61 57 62 - name: Log debug information … … 67 72 68 73 - name: Install NodeJS 69 uses: actions/setup-node@ v174 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 70 75 with: 71 76 node-version: 14 72 77 73 78 - name: Cache NodeJS modules 74 uses: actions/cache@ v279 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 75 80 env: 76 81 cache-name: cache-node-modules … … 79 84 path: ~/.npm 80 85 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 81 restore-keys: |82 ${{ runner.os }}-npm-83 86 84 87 - name: Install Dependencies 85 run: np x install-changed --install-command="npm ci"88 run: npm ci 86 89 87 90 - name: Build WordPress -
branches/3.8/.github/workflows/javascript-tests.yml
r50323 r50646 2 2 3 3 on: 4 # JavaScript testing was introduced in WordPress 3.8. 4 5 push: 5 6 branches: 6 7 - master 7 # JavaScript testing was introduced in WordPress 3.8.8 - trunk 8 9 - '3.[89]' 9 10 - '[4-9].[0-9]' … … 12 13 - '[4-9].[0-9]*' 13 14 pull_request: 15 branches: 16 - master 17 - trunk 18 - '3.[89]' 19 - '[4-9].[0-9]' 20 paths: 21 # Any change to a JavaScript file should run tests. 22 - '**.js' 23 # These files configure NPM. Changes could affect the outcome. 24 - 'package*.json' 25 # This file configures ESLint. Changes could affect the outcome. 26 - '.eslintignore' 27 # This file configures JSHint. Changes could affect the outcome. 28 - '.jshintrc' 29 # Any change to the QUnit directory should run tests. 30 - 'tests/qunit/**' 31 # Changes to workflow files should always verify all workflows are successful. 32 - '.github/workflows/*.yml' 33 workflow_dispatch: 14 34 15 35 jobs: … … 34 54 - name: Cancel previous runs of this workflow (pull requests only) 35 55 if: ${{ github.event_name == 'pull_request' }} 36 uses: styfle/cancel-workflow-action@0.5.0 37 with: 38 access_token: ${{ github.token }} 56 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.0 39 57 40 58 - name: Checkout repository 41 uses: actions/checkout@ v259 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 42 60 43 61 - name: Log debug information … … 49 67 50 68 - name: Install NodeJS 51 uses: actions/setup-node@ v169 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 52 70 with: 53 71 node-version: 14 54 72 55 73 - name: Cache NodeJS modules 56 uses: actions/cache@ v274 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 57 75 env: 58 76 cache-name: cache-node-modules … … 61 79 path: ~/.npm 62 80 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 63 restore-keys: |64 ${{ runner.os }}-npm-65 81 66 82 - name: Log debug information … … 70 86 71 87 - name: Install Dependencies 72 run: np x install-changed --install-command="npm ci"88 run: npm ci 73 89 74 90 - name: Run QUnit tests -
branches/3.8/.github/workflows/php-compatibility.yml
r50323 r50646 2 2 3 3 on: 4 # PHP compatibility testing was introduced in WordPress 5.5. 4 5 push: 5 6 branches: 6 7 - master 7 # The PHP compatibility testing was introduced in WordPress 5.5.8 - trunk 8 9 - '5.[5-9]' 9 10 - '[6-9].[0-9]' … … 12 13 - '[6-9].[0-9]*' 13 14 pull_request: 15 branches: 16 - master 17 - trunk 18 - '5.[5-9]' 19 - '[6-9].[0-9]' 20 paths: 21 # This workflow only scans PHP files. 22 - '**.php' 23 # These files configure Composer. Changes could affect the outcome. 24 - 'composer.*' 25 # This file configures PHP Compatibility scanning. Changes could affect the outcome. 26 - 'phpcompat.xml.dist' 27 # Changes to workflow files should always verify all workflows are successful. 28 - '.github/workflows/*.yml' 29 workflow_dispatch: 14 30 15 31 jobs: … … 35 51 steps: 36 52 - name: Checkout repository 37 uses: actions/checkout@ v253 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 38 54 39 55 - name: Set up PHP 40 uses: shivammathur/setup-php@ v256 uses: shivammathur/setup-php@afefcaf556d98dc7896cca380e181decb609ca44 # v2.10.0 41 57 with: 42 58 php-version: '7.4' … … 50 66 51 67 - name: Install Composer dependencies 52 uses: ramsey/composer-install@ v168 uses: ramsey/composer-install@92a7904348d4ad30236f3611e33b7f0c6f9edd70 # v1.1.0 53 69 with: 54 70 composer-options: "--no-progress --no-ansi --no-interaction" -
branches/3.8/.github/workflows/phpunit-tests.yml
r50323 r50646 5 5 branches: 6 6 - master 7 - trunk 7 8 - '3.[7-9]' 8 9 - '[4-9].[0-9]' … … 11 12 - '[4-9].[0-9]*' 12 13 pull_request: 14 branches: 15 - master 16 - trunk 17 - '3.[7-9]' 18 - '[4-9].[0-9]' 19 workflow_dispatch: 13 20 # Once weekly On Sundays at 00:00 UTC. 14 21 schedule: … … 44 51 - name: Cancel previous runs of this workflow (pull requests only) 45 52 if: ${{ github.event_name == 'pull_request' }} 46 uses: styfle/cancel-workflow-action@0.5.0 47 with: 48 access_token: ${{ github.token }} 53 uses: styfle/cancel-workflow-action@3d86a7cc43670094ac248017207be0295edbc31d # v0.8.0 49 54 50 55 - name: Checkout repository 51 uses: actions/checkout@ v256 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 52 57 53 58 - name: Log debug information … … 65 70 66 71 - name: Install NodeJS 67 uses: actions/setup-node@ v172 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 68 73 with: 69 74 node-version: 14 70 75 71 76 - name: Cache NodeJS modules 72 uses: actions/cache@ v277 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 73 78 env: 74 79 cache-name: cache-node-modules … … 77 82 path: ~/.npm 78 83 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 79 restore-keys: |80 ${{ runner.os }}-npm-81 84 82 85 - name: Install Dependencies 83 run: np x install-changed --install-command="npm ci"86 run: npm ci 84 87 85 88 - name: Build WordPress … … 87 90 88 91 - name: Create ZIP artifact 89 uses: thedoctor0/zip-release@ 0.4.192 uses: thedoctor0/zip-release@a1afcab9c664c9976ac398fa831eac67bed1eb0e # v0.4.1 90 93 with: 91 94 filename: built-wp-${{ github.sha }}.zip … … 93 96 94 97 - name: Upload build artifact 95 uses: actions/upload-artifact@ v298 uses: actions/upload-artifact@e448a9b857ee2131e752b06002bf0e093c65e571 # v2.2.2 96 99 with: 97 100 name: built-wp-${{ github.sha }} … … 125 128 # - todo: Configure Slack notifications for failing tests. 126 129 test-php: 127 name: ${{ matrix.php }}${{ matrix.m emcached && ' with memcached' || '' }} on ${{ matrix.os }}130 name: ${{ matrix.php }}${{ matrix.multisite && ' multisite' || '' }}${{ matrix.split_slow && ' slow tests' || '' }} ${{ matrix.memcached && ' with memcached' || '' }} on ${{ matrix.os }} 128 131 needs: setup-wordpress 129 132 runs-on: ${{ matrix.os }} 130 133 strategy: 134 fail-fast: false 131 135 matrix: 132 php: [ '5. 5', '5.4', '5.3' ]136 php: [ '5.3', '5.4', '5.5' ] 133 137 os: [ ubuntu-latest ] 138 split_slow: [ false, true ] 139 multisite: [ false, true ] 134 140 env: 135 141 LOCAL_PHP: ${{ matrix.php }}-fpm 136 142 LOCAL_PHP_MEMCACHED: ${{ matrix.memcached }} 143 PHPUNIT_CONFIG: ${{ matrix.multisite && 'tests/phpunit/multisite.xml' || 'phpunit.xml.dist' }} 144 SLOW_TESTS: 'external-http,media' 137 145 138 146 steps: … … 143 151 144 152 - name: Download the built WordPress artifact 145 uses: actions/download-artifact@ v2153 uses: actions/download-artifact@4a7a711286f30c025902c28b541c10e147a9b843 # v2.0.8 146 154 with: 147 155 name: built-wp-${{ github.sha }} … … 151 159 152 160 - name: Install NodeJS 153 uses: actions/setup-node@ v1161 uses: actions/setup-node@46071b5c7a2e0c34e49c3cb8a0e792e86e18d5ea # v2.1.5 154 162 with: 155 163 node-version: 14 156 164 157 165 - name: Use cached Node modules 158 uses: actions/cache@ v2166 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 159 167 env: 160 168 cache-name: cache-node-modules … … 163 171 path: ~/.npm 164 172 key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} 165 restore-keys: |166 ${{ runner.os }}-npm-167 173 168 174 - name: Install Dependencies 169 run: np x install-changed --install-command="npm ci"175 run: npm ci 170 176 171 177 - name: Cache Composer dependencies 172 178 if: ${{ env.COMPOSER_INSTALL == true }} 173 uses: actions/cache@ v2179 uses: actions/cache@26968a09c0ea4f3e233fdddbafd1166051a095f6 # v2.1.4 174 180 env: 175 181 cache-name: cache-composer-dependencies … … 177 183 path: ${{ steps.composer-cache.outputs.dir }} 178 184 key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.lock') }} 179 restore-keys: |180 ${{ runner.os }}-php-${{ matrix.php }}-composer-181 185 182 186 - name: Install Composer dependencies … … 224 228 run: npm run env:install 225 229 230 - name: Run slow PHPUnit tests 231 if: ${{ matrix.split_slow }} 232 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c ${{ env.PHPUNIT_CONFIG }} --group ${{ env.SLOW_TESTS }} 233 234 - name: Run PHPUnit tests for single site excluding slow tests 235 if: ${{ matrix.php < '7.0' && ! matrix.split_slow && ! matrix.multisite }} 236 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c ${{ env.PHPUNIT_CONFIG }} --exclude-group ${{ env.SLOW_TESTS }},ajax,ms-files,ms-required 237 238 - name: Run PHPUnit tests for Multisite excluding slow tests 239 if: ${{ matrix.php < '7.0' && ! matrix.split_slow && matrix.multisite }} 240 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c ${{ env.PHPUNIT_CONFIG }} --exclude-group ${{ env.SLOW_TESTS }},ajax,ms-files,ms-excluded,oembed-headers 241 226 242 - name: Run PHPUnit tests 227 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c phpunit.xml.dist 243 if: ${{ matrix.php >= '7.0' }} 244 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c ${{ env.PHPUNIT_CONFIG }} 228 245 229 246 - name: Run AJAX tests 230 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c phpunit.xml.dist --group ajax 231 232 - name: Run tests as a multisite install 233 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c tests/phpunit/multisite.xml 247 if: ${{ ! matrix.multisite && ! matrix.split_slow }} 248 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c ${{ env.PHPUNIT_CONFIG }} --group ajax 234 249 235 250 - name: Run external HTTP tests 251 if: ${{ ! matrix.multisite && ! matrix.split_slow }} 236 252 run: npm run test:${{ env.PHPUNIT_SCRIPT }} -- --verbose -c phpunit.xml.dist --group external-http 237 253 238 254 - name: Checkout the WordPress Test Reporter 239 255 if: ${{ github.repository == 'WordPress/wordpress-develop' && github.ref == 'refs/heads/master' && matrix.report }} 240 uses: actions/checkout@ v2256 uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f # v2.3.4 241 257 with: 242 258 repository: 'WordPress/phpunit-test-runner' -
branches/3.8/.github/workflows/welcome-new-contributors.yml
r50323 r50646 12 12 13 13 steps: 14 - uses: bubkoo/welcome-action@ v114 - uses: bubkoo/welcome-action@8dbbac2540d155744c90e4e37da6b05ffc9c5e2c # v1.0.3 15 15 with: 16 16 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -
branches/3.8/package-lock.json
r50250 r50646 585 585 }, 586 586 "clean-css": { 587 "version": " 4.2.3",588 "resolved": "https://registry.npmjs.org/clean-css/-/clean-css- 4.2.3.tgz",589 "integrity": "sha512- VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==",587 "version": "5.1.2", 588 "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.1.2.tgz", 589 "integrity": "sha512-QcaGg9OuMo+0Ds933yLOY+gHPWbxhxqF0HDexmToPf8pczvmvZGYzd+QqWp9/mkucAOKViI+dSFOqoZIvXbeBw==", 590 590 "dev": true, 591 591 "requires": { … … 1258 1258 }, 1259 1259 "follow-redirects": { 1260 "version": "1.13. 2",1261 "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13. 2.tgz",1262 "integrity": "sha512- 6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA==",1260 "version": "1.13.3", 1261 "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz", 1262 "integrity": "sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==", 1263 1263 "dev": true 1264 1264 }, … … 1317 1317 }, 1318 1318 "fsevents": { 1319 "version": "2.3. 1",1320 "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3. 1.tgz",1321 "integrity": "sha512- YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw==",1319 "version": "2.3.2", 1320 "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1321 "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1322 1322 "dev": true, 1323 1323 "optional": true … … 1383 1383 }, 1384 1384 "glob-parent": { 1385 "version": "5.1. 1",1386 "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1. 1.tgz",1387 "integrity": "sha512- FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==",1385 "version": "5.1.2", 1386 "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1387 "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1388 1388 "dev": true, 1389 1389 "requires": { … … 1612 1612 }, 1613 1613 "grunt-contrib-cssmin": { 1614 "version": "3.0.0", 1615 "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-3.0.0.tgz", 1616 "integrity": "sha512-eXpooYmVGKMs/xV7DzTLgJFPVOfMuawPD3x0JwhlH0mumq2NtH3xsxaHxp1Y3NKxp0j0tRhFS6kSBRsz6TuTGg==", 1617 "dev": true, 1618 "requires": { 1619 "chalk": "^2.4.1", 1620 "clean-css": "~4.2.1", 1621 "maxmin": "^2.1.0" 1622 }, 1623 "dependencies": { 1624 "ansi-styles": { 1625 "version": "3.2.1", 1626 "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 1627 "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 1628 "dev": true, 1629 "requires": { 1630 "color-convert": "^1.9.0" 1631 } 1632 }, 1633 "chalk": { 1634 "version": "2.4.2", 1635 "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 1636 "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 1637 "dev": true, 1638 "requires": { 1639 "ansi-styles": "^3.2.1", 1640 "escape-string-regexp": "^1.0.5", 1641 "supports-color": "^5.3.0" 1642 } 1643 }, 1644 "color-convert": { 1645 "version": "1.9.3", 1646 "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 1647 "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 1648 "dev": true, 1649 "requires": { 1650 "color-name": "1.1.3" 1651 } 1652 }, 1653 "color-name": { 1654 "version": "1.1.3", 1655 "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 1656 "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", 1657 "dev": true 1658 }, 1659 "has-flag": { 1614 "version": "4.0.0", 1615 "resolved": "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-4.0.0.tgz", 1616 "integrity": "sha512-jXU+Zlk8Q8XztOGNGpjYlD/BDQ0n95IHKrQKtFR7Gd8hZrzgqiG1Ra7cGYc8h2DD9vkSFGNlweb9Q00rBxOK2w==", 1617 "dev": true, 1618 "requires": { 1619 "chalk": "^4.1.0", 1620 "clean-css": "^5.0.1", 1621 "maxmin": "^3.0.0" 1622 }, 1623 "dependencies": { 1624 "figures": { 1625 "version": "3.2.0", 1626 "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", 1627 "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", 1628 "dev": true, 1629 "requires": { 1630 "escape-string-regexp": "^1.0.5" 1631 } 1632 }, 1633 "gzip-size": { 1634 "version": "5.1.1", 1635 "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", 1636 "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", 1637 "dev": true, 1638 "requires": { 1639 "duplexer": "^0.1.1", 1640 "pify": "^4.0.1" 1641 } 1642 }, 1643 "maxmin": { 1660 1644 "version": "3.0.0", 1661 "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 1662 "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", 1663 "dev": true 1664 }, 1665 "supports-color": { 1666 "version": "5.5.0", 1667 "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 1668 "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 1669 "dev": true, 1670 "requires": { 1671 "has-flag": "^3.0.0" 1645 "resolved": "https://registry.npmjs.org/maxmin/-/maxmin-3.0.0.tgz", 1646 "integrity": "sha512-wcahMInmGtg/7c6a75fr21Ch/Ks1Tb+Jtoan5Ft4bAI0ZvJqyOw8kkM7e7p8hDSzY805vmxwHT50KcjGwKyJ0g==", 1647 "dev": true, 1648 "requires": { 1649 "chalk": "^4.1.0", 1650 "figures": "^3.2.0", 1651 "gzip-size": "^5.1.1", 1652 "pretty-bytes": "^5.3.0" 1672 1653 } 1673 1654 } … … 3009 2990 "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", 3010 2991 "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", 2992 "dev": true 2993 }, 2994 "pify": { 2995 "version": "4.0.1", 2996 "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", 2997 "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", 3011 2998 "dev": true 3012 2999 }, … … 3319 3306 }, 3320 3307 "sass": { 3321 "version": "1.32. 6",3322 "resolved": "https://registry.npmjs.org/sass/-/sass-1.32. 6.tgz",3323 "integrity": "sha512- 1bcDHDcSqeFtMr0JXI3xc/CXX6c4p0wHHivJdru8W7waM7a1WjKMm4m/Z5sY7CbVw4Whi2Chpcw6DFfSWwGLzQ==",3308 "version": "1.32.8", 3309 "resolved": "https://registry.npmjs.org/sass/-/sass-1.32.8.tgz", 3310 "integrity": "sha512-Sl6mIeGpzjIUZqvKnKETfMf0iDAswD9TNlv13A7aAF3XZlRPMq4VvJWBC2N2DXbp94MQVdNSFG6LfF/iOXrPHQ==", 3324 3311 "dev": true, 3325 3312 "requires": { … … 3925 3912 }, 3926 3913 "wait-on": { 3927 "version": "5. 2.1",3928 "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5. 2.1.tgz",3929 "integrity": "sha512- H2F986kNWMU9hKlI9l/ppO6tN8ZSJd35yBljMLa1/vjzWP++Qh6aXyt77/u7ySJFZQqBtQxnvm/xgG48AObXcw==",3914 "version": "5.3.0", 3915 "resolved": "https://registry.npmjs.org/wait-on/-/wait-on-5.3.0.tgz", 3916 "integrity": "sha512-DwrHrnTK+/0QFaB9a8Ol5Lna3k7WvUR4jzSKmz0YaPBpuN2sACyiPVKVfj6ejnjcajAcvn3wlbTyMIn9AZouOg==", 3930 3917 "dev": true, 3931 3918 "requires": { 3932 3919 "axios": "^0.21.1", 3933 3920 "joi": "^17.3.0", 3934 "lodash": "^4.17.2 0",3921 "lodash": "^4.17.21", 3935 3922 "minimist": "^1.2.5", 3936 3923 "rxjs": "^6.6.3" 3937 3924 }, 3938 3925 "dependencies": { 3926 "lodash": { 3927 "version": "4.17.21", 3928 "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 3929 "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", 3930 "dev": true 3931 }, 3939 3932 "rxjs": { 3940 "version": "6.6. 3",3941 "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6. 3.tgz",3942 "integrity": "sha512- trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==",3933 "version": "6.6.7", 3934 "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", 3935 "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", 3943 3936 "dev": true, 3944 3937 "requires": { -
branches/3.8/package.json
r50250 r50646 21 21 "grunt-contrib-concat": "~1.0.1", 22 22 "grunt-contrib-copy": "~1.0.0", 23 "grunt-contrib-cssmin": "~ 3.0.0",23 "grunt-contrib-cssmin": "~4.0.0", 24 24 "grunt-contrib-jshint": "3.0.0", 25 25 "grunt-contrib-qunit": "^4.0.0", … … 31 31 "grunt-sass": "~3.1.0", 32 32 "matchdep": "~2.0.0", 33 "sass": "^1.32. 6",34 "wait-on": " 5.2.1"33 "sass": "^1.32.8", 34 "wait-on": "^5.3.0" 35 35 }, 36 36 "scripts": {
Note: See TracChangeset
for help on using the changeset viewer.