{"id":19755303,"url":"https://github.com/awkward/grunt-multi-stage-sourcemap","last_synced_at":"2025-02-28T01:47:23.793Z","repository":{"id":22968047,"uuid":"26317968","full_name":"awkward/grunt-multi-stage-sourcemap","owner":"awkward","description":"multi-level source map processing with grunt","archived":false,"fork":false,"pushed_at":"2016-02-21T04:34:14.000Z","size":140,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-02-11T12:05:21.674Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/awkward.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-MIT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-11-07T12:00:58.000Z","updated_at":"2015-04-28T21:23:28.000Z","dependencies_parsed_at":"2022-08-21T17:31:05.179Z","dependency_job_id":null,"html_url":"https://github.com/awkward/grunt-multi-stage-sourcemap","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awkward%2Fgrunt-multi-stage-sourcemap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awkward%2Fgrunt-multi-stage-sourcemap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awkward%2Fgrunt-multi-stage-sourcemap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/awkward%2Fgrunt-multi-stage-sourcemap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/awkward","download_url":"https://codeload.github.com/awkward/grunt-multi-stage-sourcemap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241086347,"owners_count":19907276,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T03:10:11.835Z","updated_at":"2025-02-28T01:47:23.770Z","avatar_url":"https://github.com/awkward.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# grunt-multi-stage-sourcemap [![Build Status](https://travis-ci.org/awkward/grunt-multi-stage-sourcemap.svg?branch=master)](https://travis-ci.org/awkward/grunt-multi-stage-sourcemap)\n\n\u003e Remap multi-level sourcemaps using the [multi-stage-sourcemap](https://github.com/azu/multi-stage-sourcemap) library.\n\n## Getting Started\nThis plugin requires Grunt `~0.4.5`\n\nIf you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:\n\n```shell\nnpm install grunt-multi-stage-sourcemap --save-dev\n```\n\nOnce the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:\n\n```js\ngrunt.loadNpmTasks('grunt-multi-stage-sourcemap');\n```\n\n## The \"multi_stage_sourcemap\" task\n\n### Overview\nIn your project's Gruntfile, add a section named `multi_stage_sourcemap` to the data object passed into `grunt.initConfig()`.\n\n```js\ngrunt.initConfig({\n  multi_stage_sourcemap: {\n    options: {\n      // Task-specific options go here.\n    },\n    your_target: {\n      // Target-specific file lists and/or options go here.\n    },\n  },\n});\n```\n\n### Options\n\n#### options.map\nType: `function`\n\nDefault value:\n```\nfunction naiveMapping(pathMapFrom, pathMapTo) {\n\n  function getFilename(path) {\n    return path.split(\"/\").pop();\n  }\n\n  if (getFilename(pathMapFrom) === getFilename(pathMapTo)) {\n    return true;\n  }\n}\n```\n\nA function which decides which maps should be offset to each other. The function recieves the paths to both files and should return `true` if they match up otherwise it should return `false`.\n\nBy default the function will return `true` if both files have the same name.\n\n### Usage Examples\n\n#### Default Options\nIn this example, the default options are used to retrieve the `default_options.js.map` source map from directory `A` and remap it using `default_options.js.map` from directory `B`.\n\n```js\ngrunt.initConfig({\n  multi_stage_sourcemap: {\n    filesFrom: 'test/fixtures/A/default_options.js.map',\n    options: {},\n    files: [{\n      expand: true,\n      cwd: 'test/fixtures/B/',\n      src: ['default_options.js.map'],\n      dest: 'tmp'\n    }],\n  },\n});\n```\n\n## Contributing\nIn lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).\n\n## Release History\n* Nov 7, 2014 - v0.1.0\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawkward%2Fgrunt-multi-stage-sourcemap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fawkward%2Fgrunt-multi-stage-sourcemap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fawkward%2Fgrunt-multi-stage-sourcemap/lists"}