Skip to content

Commit e0189f2

Browse files
authored
Run grunt default in repo sync (Maps4HTML#610)
* Don't copy `leaflet.css` to dist folder * Run `grunt default` in repo sync
1 parent 90540cb commit e0189f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/sync.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node-version: '12.x'
1919
- run: npm install
2020
- run: npm install -g grunt-cli
21-
- run: grunt clean copy rollup
21+
- run: grunt default
2222
- name: Pushes to requirements repo
2323
uses: ./.github/actions/sync-repo
2424
env:

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ module.exports = function(grunt) {
5959
cwd: 'node_modules/leaflet/dist/',
6060
flatten: true,
6161
filter: 'isFile',
62-
src: ['leaflet.css','leaflet-src.js'],
62+
src: ['leaflet-src.js'],
6363
dest: 'dist/'
6464
},
6565
{

0 commit comments

Comments
 (0)