Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

linkchecker no longer available on OS X #76

Open
RaduGrama opened this issue May 23, 2016 · 1 comment
Open

linkchecker no longer available on OS X #76

RaduGrama opened this issue May 23, 2016 · 1 comment

Comments

@RaduGrama
Copy link

For chapter 5, linkchecker is no longer available for OS X (installation instructions are still available for OS X on the linkchecker site, but they do not work) and I was curious if you have any recommendation for a similar tool that does have support for OS X as well.

@eden90267
Copy link

Hello, you can use 'grunt-link-checker' plugin with grunt.

  1. install
npm install --save-dev grunt-link-checker
  1. setting
grunt.initConfig({
    cafemocha: {
        all: {src: 'qa/tests-*.js', options: {ui: 'tdd'}}
    },
    jshint: {
        app: ['meadowlark.js', 'public/js/**/*.js', 'lib/**/*.js'],
        qa: ['Gruntfile.js', 'public/qa/**/*.js', 'qa/**/*.js'],
    },
    linkChecker: {
        dev: {
            site: 'localhost',
            options: {
                initialPort: 3000
            }
        }
    },
});

It's work very well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants