bootstrap-sass не устанавливается должным образом на экземпляре Amazon Linux - PullRequest
0 голосов
/ 02 мая 2018

Я запускаю сборку grunt для проекта, который использует bootstrap-sass. Я установил bootstrap-sass, используя npm локально в папке проекта и выполняя глобальную установку. Независимо от того, что я получаю следующую ошибку:

Running "compass:server" (compass) task
    error app/styles/main.scss (Line 4: File to import not found or unreadable: ../bower_components/bootstrap-sass/lib/_variables.

Папка lib отсутствует в папке bootstrap-sass. Мне также не хватает многих других файлов и папок в папке bootstrap-sass.

Этот проект, который я пытаюсь построить, изначально был построен на Mac. Эта проблема не отображается на Mac.

файл package.json

{
  "name": "<projectname>",
  "version": "0.0.0",
  "dependencies": {
    "bootstrap-sass": "^3.3.7",
    "bower": "^1.8.4",
    "pngquant": "^1.3.0"
  },
  "devDependencies": {
    "grunt": "~0.4.1",
    "grunt-autoprefixer": "~0.2.0",
    "grunt-bower-requirejs": "~0.7.0",
    "grunt-concurrent": "~0.3.0",
    "grunt-contrib-clean": "~0.5.0",
    "grunt-contrib-coffee": "~0.7.0",
    "grunt-contrib-compass": "~0.5.0",
    "grunt-contrib-concat": "~0.3.0",
    "grunt-contrib-connect": "~0.5.0",
    "grunt-contrib-copy": "~0.4.1",
    "grunt-contrib-cssmin": "~0.6.0",
    "grunt-contrib-htmlmin": "~0.1.3",
    "grunt-contrib-imagemin": "~2.0.1",
    "grunt-contrib-jade": "~0.8.0",
    "grunt-contrib-jshint": "~0.6.3",
    "grunt-contrib-jst": "~0.5.1",
    "grunt-contrib-requirejs": "~0.4.1",
    "grunt-contrib-uglify": "^0.5.0",
    "grunt-contrib-watch": "~0.5.2",
    "grunt-mocha": "^0.4.15",
    "grunt-modernizr": "~0.3.0",
    "grunt-notify": "^0.2.20",
    "grunt-obfuscator": "^0.1.0",
    "grunt-rev": "~0.1.0",
    "grunt-svgmin": "~0.2.0",
    "grunt-usemin": "~0.1.10",
    "jst": "0.0.13",
    "load-grunt-tasks": "~0.1.0",
    "lodash": "~2.3.0",
    "parse": "~1.2.13",
    "time-grunt": "~0.1.1"
  },
  "engines": {
    "node": ">=0.8.0"
  }
}

bower.json

{
  "name": "<projectname>",
  "version": "0.0.0",
  "dependencies": {
    "modernizr": "~2.6.2",
    "jquery": "~1.10.2",
    "underscore": "~1.5.2",
    "underscore-amd": "~1.5.2",
    "backbone-amd": "~1.1.0",
    "moment": "~2.4.0",
    "bootstrap-sass": "~3.0.2",
    "gmap3": "~6.0.0",
    "requirejs": "~2.1.10",
    "select2": "~3.4.5",
    "Parallax-ImageScroll": "~0.1.4" 
  },
  "devDependencies": {}
}

Вот содержимое файла gruntfile.js

// Generated on 2013-11-22 using generator-webapp 0.4.3
// 'use strict';

// # Globbing
// for performance reasons we're only matching one level down:
// 'test/spec/{,*/}*.js'
// use this if you want to recursively match all subfolders:
// 'test/spec/**/*.js'

module.exports = function (grunt) {
    // show elapsed time at the end
    require('time-grunt')(grunt);
    // load all grunt tasks
    require('load-grunt-tasks')(grunt);
    grunt.loadNpmTasks('grunt-contrib-uglify');
    grunt.loadNpmTasks('grunt-obfuscator');
    grunt.initConfig({
        // configurable paths
        yeoman: {
            app: 'app',
            dist: 'dist'
        },
        watch: {
            jade: {
                files: ['<%= yeoman.app %>/scripts/templates/{,*/}*{,*/}*.jade'],
                tasks: ['jade']
            },
            coffee: {
                files: ['<%= yeoman.app %>/scripts/{,*/}*{,*/}*.coffee'],
                tasks: ['coffee:dist']
            },
            coffeeTest: {
                files: ['test/spec/{,*/}*.coffee'],
                tasks: ['coffee:test']
            },
            compass: {
                files: ['<%= yeoman.app %>/styles/{,*/}*.{scss,sass}'],
                tasks: ['compass:server', 'autoprefixer']
            },
            styles: {
                files: ['<%= yeoman.app %>/styles/{,*/}*.css'],
                tasks: ['copy:styles', 'autoprefixer']
            },
            livereload: {
                options: {
                    livereload: '<%= connect.options.livereload %>'
                },
                files: [
                    '<%= yeoman.app %>/*.html',
                    '.tmp/styles/{,*/}*.css',
                    '{.tmp,<%= yeoman.app %>}/scripts/{,*/}*.js',
                    '<%= yeoman.app %>/images/{,*/}*.{png,jpg,jpeg,gif,webp,svg}'
                ]
            }
        },
        connect: {
            options: {
                port: 9000,
                livereload: 35729,
                // change this to '0.0.0.0' to access the server from outside
                hostname: '0.0.0.0'
            },
            testServer: {
                options: {
                    open: true,
                    port: 9002,
                    base: [
                        '.tmp',
                        'test',
                        '<%= yeoman.app %>'
                    ]
                }
            },
            livereload: {
                options: {
                    open: true,
                    base: [
                        '.tmp',
                        '<%= yeoman.app %>'
                    ]
                }
            },
            test: {
                options: {
                    base: [
                        '.tmp',
                        'test',
                        '<%= yeoman.app %>'
                    ]
                }
            },
            dist: {
                options: {
                    open: true,
                    base: '<%= yeoman.dist %>'
                }
            }
        },
        jst: {
            compile: {
            files: {
              "<%= yeoman.app %>/scripts/templates.js": ["<%= yeoman.app %>/scripts/templates/**/*.html"]
            }
          }
        },
        jade: {
          compile: {
            options: {
              compileDebug: false,
              client: true,
              amd: true,
              data: {
                debug: false,
              }
            },
            files: {
              ".tmp/scripts/templates.js": ["<%= yeoman.app %>/scripts/templates/{,*/}*{,*/}*.jade"],
              "dist/scripts/templates.js": ["<%= yeoman.app %>/scripts/templates/{,*/}*{,*/}*.jade"]
            }
          }
        },
        clean: {
            dist: {
                files: [{
                    dot: true,
                    src: [
                        '.tmp',
                        '<%= yeoman.dist %>/*',
                        '!<%= yeoman.dist %>/.git*'
                    ]
                }]
            },
            server: '.tmp'
        },
        jshint: {
            options: {
                jshintrc: '.jshintrc'
            },
            all: [
                'Gruntfile.js',
                '<%= yeoman.app %>/scripts/{,*/}*.js',
                '!<%= yeoman.app %>/scripts/vendor/*',
                'test/spec/{,*/}*.js'
            ]
        },
        mocha: {
            all: {
                options: {
                    run: true,
                    urls: ['http://<%= connect.test.options.hostname %>:<%= connect.test.options.port %>/index.html']
                }
            }
        },
        coffee: {
            dist: {
                options: {
                    sourceMap: false
                },
                files: [{
                    expand: true,
                    cwd: '<%= yeoman.app %>/scripts',
                    src: '{,*/}*{,*/}*.coffee',
                    dest: '.tmp/scripts',
                    ext: '.js'
                }]
            },
            build: {
                options: {
                    sourceMap: false
                },
                files: [{
                    expand: true,
                    cwd: '<%= yeoman.app %>/scripts',
                    src: '**/*.coffee',
                    dest: 'dist/scripts',
                    ext: '.js'
                }]
            },
            test: {
                files: [{
                    expand: true,
                    cwd: 'test/spec',
                    src: '{,*/}*.coffee',
                    dest: '.tmp/spec',
                    ext: '.js'
                }]
            }
        },
        compass: {
            options: {
                sassDir: '<%= yeoman.app %>/styles',
                cssDir: '.tmp/styles',
                generatedImagesDir: '.tmp/images/generated',
                imagesDir: '<%= yeoman.app %>/images',
                javascriptsDir: '<%= yeoman.app %>/scripts',
                fontsDir: '<%= yeoman.app %>/styles/fonts',
                importPath: '<%= yeoman.app %>/bower_components',
                httpImagesPath: '/images',
                httpGeneratedImagesPath: '/images/generated',
                httpFontsPath: '/styles/fonts',
                relativeAssets: false,
                assetCacheBuster: false
            },
            dist: {
                options: {
                    generatedImagesDir: '<%= yeoman.dist %>/images/generated'
                }
            },
            server: {
                options: {
                    debugInfo: true
                }
            }
        },
        autoprefixer: {
            options: {
                browsers: ['last 1 version']
            },
            dist: {
                files: [{
                    expand: true,
                    cwd: '.tmp/styles/',
                    src: '{,*/}*.css',
                    dest: '.tmp/styles/',
                    dest: 'dist/styles/'
                }]
            }
        },
        // not used since Uglify task does concat,
        // but still available if needed
        /*concat: {
            dist: {}
        },*/
        requirejs: {
            dist: {
                // Options: https://github.com/jrburke/r.js/blob/master/build/example.build.js
                options: {
                    // `name` and `out` is set by grunt-usemin
                    baseUrl: '.tmp/scripts',
                    optimize: 'uglify2',
                    generateSourceMaps: true,
                    preserveLicenseComments: false,
                    useStrict: true,
                    wrap: true,
                    uglify2: { } // https://github.com/mishoo/UglifyJS2
                }
            }
        },
        uglify: {
          options: {
            mangle: true
          },
          my_target: {
            files: {
              'dist/scripts/makinit.min.js': ['dist/scripts/views/*.js']
            }
          }
        },
        rev: {
            dist: {
                files: {
                    src: [
                        '<%= yeoman.dist %>/scripts/{,*/}*{,*/}*.js',
                        '<%= yeoman.dist %>/styles/{,*/}*.css',
                        '<%= yeoman.dist %>/images/{,*/}*.{png,jpg,jpeg,gif,webp}',
                        '<%= yeoman.dist %>/styles/fonts/{,*/}*.*'
                    ]
                }
            }
        },
        useminPrepare: {
            options: {
                dest: '<%= yeoman.dist %>'
            },
            html: '<%= yeoman.app %>/index.html'
        },
        usemin: {
            options: {
                dirs: ['<%= yeoman.dist %>']
            },
            html: ['<%= yeoman.dist %>/{,*/}*.html'],
            css: ['<%= yeoman.dist %>/styles/{,*/}*.css']
        },
        imagemin: {
            dist: {
                files: [{
                    expand: true,
                    cwd: '<%= yeoman.app %>/images',
                    src: '{,*/}*.{png,jpg,jpeg}',
                    dest: '<%= yeoman.dist %>/images'
                }]
            }
        },
        svgmin: {
            dist: {
                files: [{
                    expand: true,
                    cwd: '<%= yeoman.app %>/images',
                    src: '{,*/}*.svg',
                    dest: '<%= yeoman.dist %>/images'
                }]
            }
        },
        cssmin: {
            // This task is pre-configured if you do not wish to use Usemin
            // blocks for your CSS. By default, the Usemin block from your
            // `index.html` will take care of minification, e.g.
            //
            //     <!-- build:css({.tmp,app}) styles/main.css -->
            //
            dist: {
                 files: {
                     '<%= yeoman.dist %>/styles/main.css': [
                         '.tmp/styles/{,*/}*.css',
                         '<%= yeoman.app %>/styles/{,*/}*.css'
                     ]
                 }
            }
        },
        htmlmin: {
            dist: {
                options: {
                    removeCommentsFromCDATA: true,
                    // https://github.com/yeoman/grunt-usemin/issues/44
                    //collapseWhitespace: true,
                    collapseBooleanAttributes: true,
                    removeAttributeQuotes: true,
                    removeRedundantAttributes: true,
                    useShortDoctype: true,
                    removeEmptyAttributes: true,
                    removeOptionalTags: true
                },
                files: [{
                    expand: true,
                    cwd: '<%= yeoman.app %>',
                    src: '*.html',
                    dest: '<%= yeoman.dist %>'
                }]
            }
        },
        // Put files not handled in other tasks here
        copy: {
          // fixes coffeescript source maps
            coffee: {
                files: [{
                  expand: true,
                  dot: true,
                  cwd: '<%= yeoman.app %>/scripts',
                  dest: '.tmp/scripts',
                  src: '**/*.coffee'
                }]
              },
            // this, and the vendor task below, fix the requirejs task not being able to
            // find bower components and vendor scripts.
            // the bowerComponents task is pretty silly, as it just copies everything.
            // only the needed files will be loaded, but this will make deploys a bit slower. :/
            bowerComponents: {
                files: [{
                    expand: true,
                    dot: true,
                    cwd: '<%= yeoman.app %>/bower_components',
                    dest: '.tmp/bower_components',
                    dest: 'dist/bower_components',
                    src: [
                        '{,*/}*{,*/}*.*'
                    ]
                }]
            },
            vendor: {
                files: [{
                    expand: true,
                    dot: true,
                    cwd: '<%= yeoman.app %>/scripts/vendor',
                    dest: '.tmp/scripts/vendor',
                    dest: 'dist/scripts/vendor',
                    src: [
                        '{,*/}*{,*/}*.*'
                    ]
                }]
            },
            mailgun: {
                files: [{
                    expand: true,
                    cwd: '<%= yeoman.app %>/mailgun-php',
                    src: '**/*',
                    dest: 'dist/mailgun-php'
                }]
            },
            dist: {
                files: [{
                    expand: true,
                    dot: true,
                    cwd: '<%= yeoman.app %>',
                    dest: '<%= yeoman.dist %>',
                    src: [
                        '*.{ico,png,txt}',
                        '.htaccess',
                        'images/{,*/}*.{webp,gif}',
                        'styles/fonts/{,*/}*.*',
                        'bower_components/{,*/}*{,*/}*.js'
                    ]
                }]
            },
            styles: {
                expand: true,
                dot: true,
                cwd: '<%= yeoman.app %>/styles',
                dest: '.tmp/styles/',
                dest: 'dist/styles/',
                src: '**/**/*.*'
            }
        },
        modernizr: {
            devFile: '<%= yeoman.app %>/bower_components/modernizr/modernizr.js',
            outputFile: '<%= yeoman.dist %>/bower_components/modernizr/modernizr-custom.js',
            files: [
                '<%= yeoman.dist %>/scripts/{,*/}*.js',
                '<%= yeoman.dist %>/styles/{,*/}*.css',
                '!<%= yeoman.dist %>/scripts/vendor/*'
            ],
            uglify: true
        },
        concurrent: {
            server: [
                'jade',
                'compass',
                'coffee:dist',
                'copy:styles'
            ],
            test: [
                'jade',
                'compass',
                'copy:styles'
            ],
            dist: [
                'jade',
                'compass',
                'coffee',
                'imagemin',
                'svgmin',
                'copy:styles',
                'htmlmin'
            ]
        },
        bower: {
            options: {
                exclude: ['modernizr']
            },
            all: {
                rjsConfig: '<%= yeoman.app %>/scripts/main.js'
            }
        },
        obfuscator: {
            //files: ['<%= yeoman.dist %>/scripts/**/*.js'],
            files: ['./dist/scripts/templates.js'],
            entry: 'app.js',
            out: './dist/scripts/makinit.min.js',
            strings: true,
            root: __dirname
        }
    });

    grunt.registerTask('server', function (target) {
        if (target === 'dist') {
            return grunt.task.run(['build', 'connect:dist:keepalive']);
        }

        grunt.task.run([
            'clean:server',
            'copy:coffee',
            'concurrent:server',
            'autoprefixer',
            'connect:livereload',
            'watch'
        ]);
    });

    grunt.registerTask('test', [
        'clean:server',
        'concurrent:test',
        'autoprefixer',
        'connect:test',
        'mocha'
    ]);

    grunt.registerTask('test-server', [
        'clean:server',
        'concurrent:test',
        'concurrent:server',
        'autoprefixer',
        'connect:testServer',
        'watch'
    ]);

    grunt.registerTask('build', [
        'clean:dist',
        'coffee:build',
        'copy:bowerComponents',
        'concurrent:dist',
        'autoprefixer',
        'copy:vendor',
        'copy:mailgun'
    ]);

    grunt.registerTask('publish', [
        'clean:dist',
        'coffee:build',
        'copy:bowerComponents',
        'concurrent:dist',
        'autoprefixer',
        'copy:vendor',
        'copy:mailgun',
        'obfuscator'
    ]);

    grunt.registerTask('default', [
        'jshint',
        'test',
        'build'
    ]);

    //notifications when test fails
    // grunt.loadNpmTasks('grunt-notify');
    grunt.loadNpmTasks('grunt-contrib-jade', 'grunt-notify');
};
...