gulp-watch-sequence
Advanced tools
Sorry, the diff of this file is not supported yet
+13
-3
@@ -98,4 +98,14 @@ var runSequence = require('run-sequence'); | ||
| var sequence = Array.prototype.slice.call(arguments); | ||
| return function(files, done) { | ||
| enqueue.apply(null, sequence.concat(done)); | ||
| return function (files, done) { | ||
| if (typeof done === 'function') { | ||
| // done may be a function as a result of using gulp-batch. | ||
| // see https://github.com/floatdrop/gulp-watch/blob/v1.0.7/index.js#L37 | ||
| sequence = sequence.concat(done); | ||
| } | ||
| else if (typeof done === 'string') { | ||
| // sequence's last member can be the name of a registered gulp task | ||
| // so we can be nice and let it through at this point. | ||
| sequence = sequence.concat(done); | ||
| } | ||
| enqueue.apply(null, sequence); | ||
| } | ||
@@ -116,2 +126,2 @@ }, | ||
| } | ||
| } | ||
| } |
+1
-1
| { | ||
| "name": "gulp-watch-sequence", | ||
| "version": "0.0.4", | ||
| "version": "1.0.0", | ||
| "description": "Merge the actions of multiple watch triggers into a single common sequence.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
+11
-19
| # gulp-watch-sequence | ||
| > Merge the actions of multiple watch triggers into a single common sequence. | ||
| [](http://github.com/bholloway/gulp-watch-sequence) | ||
| ## Install | ||
| Merge the actions of multiple watch triggers into a single common sequence. | ||
| Install with [npm](https://npmjs.org/package/gulp-watch-sequence). | ||
| ``` | ||
| npm install --save-dev gulp-watch-sequence | ||
| ``` | ||
| ## Usage | ||
@@ -24,5 +18,5 @@ | ||
| ```js | ||
| var gulp = require('gulp'); | ||
| var watch = require('gulp-watch'); | ||
| var sequence = require('gulp-watch-sequence'); | ||
| var gulp = require('gulp'), | ||
| watch = require('gulp-watch'), | ||
| sequence = require('gulp-watch-sequence'); | ||
@@ -32,12 +26,10 @@ gulp.task('watch', function () { | ||
| watch({ | ||
| name: 'JS', | ||
| emitOnGlob: false, | ||
| glob: 'src/**/*.js' | ||
| watch('src/**/*.js', { | ||
| name : 'JS', | ||
| emitOnGlob: false | ||
| }, queue.getHandler('js', 'html', 'reload')); | ||
| watch({ | ||
| name: 'CSS', | ||
| emitOnGlob: false, | ||
| glob: 'scss/**/*.scss' | ||
| watch('scss/**/*.scss', { | ||
| name : 'CSS', | ||
| emitOnGlob: false | ||
| }, queue.getHandler('css', 'html', 'reload')); | ||
@@ -44,0 +36,0 @@ }); |
Sorry, the diff of this file is not supported yet
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project version="4"> | ||
| <component name="PublishConfigData" persistUploadOnCheckin="false" /> | ||
| </project> | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project version="4"> | ||
| <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" /> | ||
| </project> | ||
Sorry, the diff of this file is not supported yet
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project version="4"> | ||
| <component name="ProjectInspectionProfilesVisibleTreeState"> | ||
| <entry key="Project Default"> | ||
| <profile-state> | ||
| <expanded-state> | ||
| <State> | ||
| <id /> | ||
| </State> | ||
| <State> | ||
| <id>Data flow issuesJavaScript</id> | ||
| </State> | ||
| <State> | ||
| <id>Error handlingJavaScript</id> | ||
| </State> | ||
| <State> | ||
| <id>JavaScript</id> | ||
| </State> | ||
| <State> | ||
| <id>JavaScript validity issuesJavaScript</id> | ||
| </State> | ||
| </expanded-state> | ||
| <selected-state> | ||
| <State> | ||
| <id>CoffeeScript</id> | ||
| </State> | ||
| </selected-state> | ||
| </profile-state> | ||
| </entry> | ||
| </component> | ||
| <component name="ProjectRootManager" version="2" /> | ||
| </project> | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project version="4"> | ||
| <component name="ProjectModuleManager"> | ||
| <modules> | ||
| <module fileurl="file://$PROJECT_DIR$/.idea/gulp-watch-sequence.iml" filepath="$PROJECT_DIR$/.idea/gulp-watch-sequence.iml" /> | ||
| </modules> | ||
| </component> | ||
| </project> | ||
| <component name="DependencyValidationManager"> | ||
| <state> | ||
| <option name="SKIP_IMPORT_STATEMENTS" value="false" /> | ||
| </state> | ||
| </component> |
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project version="4"> | ||
| <component name="VcsDirectoryMappings"> | ||
| <mapping directory="$PROJECT_DIR$" vcs="Git" /> | ||
| </component> | ||
| </project> | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project version="4"> | ||
| <component name="ChangeListManager"> | ||
| <list default="true" id="a00a67c6-6767-4839-8195-4c3931dfa067" name="Default" comment=""> | ||
| <change type="MODIFICATION" beforePath="$PROJECT_DIR$/README.md" afterPath="$PROJECT_DIR$/README.md" /> | ||
| <change type="MODIFICATION" beforePath="$PROJECT_DIR$/index.js" afterPath="$PROJECT_DIR$/index.js" /> | ||
| </list> | ||
| <ignored path=".idea/" /> | ||
| <option name="TRACKING_ENABLED" value="true" /> | ||
| <option name="SHOW_DIALOG" value="false" /> | ||
| <option name="HIGHLIGHT_CONFLICTS" value="true" /> | ||
| <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> | ||
| <option name="LAST_RESOLUTION" value="IGNORE" /> | ||
| </component> | ||
| <component name="ChangesViewManager" flattened_view="true" show_ignored="false" /> | ||
| <component name="CreatePatchCommitExecutor"> | ||
| <option name="PATCH_PATH" value="" /> | ||
| </component> | ||
| <component name="DaemonCodeAnalyzer"> | ||
| <disable_hints /> | ||
| </component> | ||
| <component name="ExecutionTargetManager" SELECTED_TARGET="default_target" /> | ||
| <component name="FavoritesManager"> | ||
| <favorites_list name="gulp-watch-sequence" /> | ||
| </component> | ||
| <component name="FileEditorManager"> | ||
| <leaf> | ||
| <file leaf-file-name=".jshintrc" pinned="false" current="false" current-in-tab="false"> | ||
| <entry file="file://$PROJECT_DIR$/.jshintrc"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="-0.0" vertical-offset="0" max-vertical-offset="450"> | ||
| <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| </file> | ||
| <file leaf-file-name="README.md" pinned="false" current="true" current-in-tab="true"> | ||
| <entry file="file://$PROJECT_DIR$/README.md"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.63723916" vertical-offset="413" max-vertical-offset="1290"> | ||
| <caret line="54" column="0" selection-start-line="54" selection-start-column="0" selection-end-line="54" selection-end-column="0" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| <provider editor-type-id="MarkdownPreviewEditor"> | ||
| <state /> | ||
| </provider> | ||
| </entry> | ||
| </file> | ||
| <file leaf-file-name="package.json" pinned="false" current="false" current-in-tab="false"> | ||
| <entry file="file://$PROJECT_DIR$/package.json"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="-1.25" vertical-offset="0" max-vertical-offset="495"> | ||
| <caret line="2" column="19" selection-start-line="2" selection-start-column="19" selection-end-line="2" selection-end-column="19" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| </file> | ||
| <file leaf-file-name="index.js" pinned="false" current="false" current-in-tab="false"> | ||
| <entry file="file://$PROJECT_DIR$/index.js"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.0" vertical-offset="760" max-vertical-offset="1800"> | ||
| <caret line="68" column="12" selection-start-line="68" selection-start-column="12" selection-end-line="68" selection-end-column="69" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| </file> | ||
| </leaf> | ||
| </component> | ||
| <component name="FindManager"> | ||
| <FindUsagesManager> | ||
| <setting name="OPEN_NEW_TAB" value="true" /> | ||
| </FindUsagesManager> | ||
| </component> | ||
| <component name="Git.Settings"> | ||
| <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" /> | ||
| </component> | ||
| <component name="IdeDocumentHistory"> | ||
| <option name="changedFiles"> | ||
| <list> | ||
| <option value="$PROJECT_DIR$/package.json" /> | ||
| <option value="$PROJECT_DIR$/index.js" /> | ||
| <option value="$PROJECT_DIR$/README.md" /> | ||
| </list> | ||
| </option> | ||
| </component> | ||
| <component name="ProjectFrameBounds"> | ||
| <option name="x" value="-1920" /> | ||
| <option name="width" value="1920" /> | ||
| <option name="height" value="1080" /> | ||
| </component> | ||
| <component name="ProjectLevelVcsManager" settingsEditedManually="false"> | ||
| <OptionsSetting value="true" id="Add" /> | ||
| <OptionsSetting value="true" id="Remove" /> | ||
| <OptionsSetting value="true" id="Checkout" /> | ||
| <OptionsSetting value="true" id="Update" /> | ||
| <OptionsSetting value="true" id="Status" /> | ||
| <OptionsSetting value="true" id="Edit" /> | ||
| <ConfirmationsSetting value="0" id="Add" /> | ||
| <ConfirmationsSetting value="0" id="Remove" /> | ||
| </component> | ||
| <component name="ProjectReloadState"> | ||
| <option name="STATE" value="0" /> | ||
| </component> | ||
| <component name="ProjectView"> | ||
| <navigator currentView="ProjectPane" proportions="" version="1"> | ||
| <flattenPackages /> | ||
| <showMembers /> | ||
| <showModules /> | ||
| <showLibraryContents /> | ||
| <hideEmptyPackages /> | ||
| <abbreviatePackageNames /> | ||
| <autoscrollToSource /> | ||
| <autoscrollFromSource /> | ||
| <sortByType /> | ||
| </navigator> | ||
| <panes> | ||
| <pane id="ProjectPane"> | ||
| <subPane> | ||
| <PATH> | ||
| <PATH_ELEMENT> | ||
| <option name="myItemId" value="gulp-watch-sequence" /> | ||
| <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" /> | ||
| </PATH_ELEMENT> | ||
| </PATH> | ||
| <PATH> | ||
| <PATH_ELEMENT> | ||
| <option name="myItemId" value="gulp-watch-sequence" /> | ||
| <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" /> | ||
| </PATH_ELEMENT> | ||
| <PATH_ELEMENT> | ||
| <option name="myItemId" value="gulp-watch-sequence" /> | ||
| <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.PsiDirectoryNode" /> | ||
| </PATH_ELEMENT> | ||
| </PATH> | ||
| </subPane> | ||
| </pane> | ||
| <pane id="Scope" /> | ||
| </panes> | ||
| </component> | ||
| <component name="PropertiesComponent"> | ||
| <property name="options.lastSelected" value="Settings.JavaScript.Linters.JSHint" /> | ||
| <property name="options.splitter.main.proportions" value="0.3" /> | ||
| <property name="options.splitter.details.proportions" value="0.2" /> | ||
| <property name="options.searchVisible" value="true" /> | ||
| <property name="WebServerToolWindowFactoryState" value="true" /> | ||
| <property name="FullScreen" value="true" /> | ||
| </component> | ||
| <component name="RecentsManager"> | ||
| <key name="CopyFile.RECENT_KEYS"> | ||
| <recent name="$PROJECT_DIR$" /> | ||
| </key> | ||
| </component> | ||
| <component name="RunManager"> | ||
| <configuration default="true" type="DartCommandLineRunConfigurationType" factoryName="Dart Command Line Application"> | ||
| <option name="VMOptions" /> | ||
| <option name="arguments" /> | ||
| <option name="filePath" /> | ||
| <option name="name" value="Dart" /> | ||
| <option name="saveOutputToFile" value="false" /> | ||
| <option name="showConsoleOnStdErr" value="false" /> | ||
| <option name="showConsoleOnStdOut" value="false" /> | ||
| <method /> | ||
| </configuration> | ||
| <configuration default="true" type="DartUnitRunConfigurationType" factoryName="DartUnit"> | ||
| <option name="VMOptions" /> | ||
| <option name="arguments" /> | ||
| <option name="filePath" /> | ||
| <option name="scope" value="ALL" /> | ||
| <option name="testName" /> | ||
| <method /> | ||
| </configuration> | ||
| <configuration default="true" type="JSTestDriver:ConfigurationType" factoryName="JsTestDriver"> | ||
| <setting name="configLocationType" value="CONFIG_FILE" /> | ||
| <setting name="settingsFile" value="" /> | ||
| <setting name="serverType" value="INTERNAL" /> | ||
| <setting name="preferredDebugBrowser" value="Chrome" /> | ||
| <method /> | ||
| </configuration> | ||
| <configuration default="true" type="JavaScriptTestRunnerKarma" factoryName="Karma" config-file=""> | ||
| <envs /> | ||
| <method /> | ||
| </configuration> | ||
| <configuration default="true" type="CucumberJavaScriptRunConfigurationType" factoryName="Cucumber.js"> | ||
| <option name="cucumberJsArguments" /> | ||
| <option name="executablePath" /> | ||
| <option name="filePath" /> | ||
| <method /> | ||
| </configuration> | ||
| <configuration default="true" type="JavascriptDebugType" factoryName="JavaScript Debug"> | ||
| <method /> | ||
| </configuration> | ||
| <configuration default="true" type="NodeJSConfigurationType" factoryName="Node.js" working-dir=""> | ||
| <method /> | ||
| </configuration> | ||
| <list size="0" /> | ||
| </component> | ||
| <component name="ShelveChangesManager" show_recycled="false" /> | ||
| <component name="SvnConfiguration"> | ||
| <configuration /> | ||
| </component> | ||
| <component name="TaskManager"> | ||
| <task active="true" id="Default" summary="Default task"> | ||
| <changelist id="a00a67c6-6767-4839-8195-4c3931dfa067" name="Default" comment="" /> | ||
| <created>1406603572170</created> | ||
| <updated>1406603572170</updated> | ||
| </task> | ||
| <task id="LOCAL-00001" summary="initial commit"> | ||
| <created>1406608490749</created> | ||
| <updated>1406608490749</updated> | ||
| </task> | ||
| <task id="LOCAL-00002" summary="added filtering for sequences"> | ||
| <created>1406609597813</created> | ||
| <updated>1406609597813</updated> | ||
| </task> | ||
| <task id="LOCAL-00003" summary="fix package.json"> | ||
| <created>1406610411206</created> | ||
| <updated>1406610411206</updated> | ||
| </task> | ||
| <task id="LOCAL-00004" summary="bug fixes"> | ||
| <created>1406611756838</created> | ||
| <updated>1406611756838</updated> | ||
| </task> | ||
| <task id="LOCAL-00005" summary="removed debug logging"> | ||
| <created>1406611871923</created> | ||
| <updated>1406611871923</updated> | ||
| </task> | ||
| <task id="LOCAL-00006" summary="fixed readme"> | ||
| <created>1406612412136</created> | ||
| <updated>1406612412136</updated> | ||
| </task> | ||
| <task id="LOCAL-00007" summary="minor changes to readme"> | ||
| <created>1406613715911</created> | ||
| <updated>1406613715911</updated> | ||
| </task> | ||
| <task id="LOCAL-00008" summary="minor changes to readme"> | ||
| <created>1406613904125</created> | ||
| <updated>1406613904125</updated> | ||
| </task> | ||
| <option name="localTasksCounter" value="9" /> | ||
| <servers /> | ||
| </component> | ||
| <component name="ToolWindowManager"> | ||
| <frame x="-1920" y="0" width="1920" height="1080" extended-state="0" /> | ||
| <editor active="true" /> | ||
| <layout> | ||
| <window_info id="Messages" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.32871288" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32970297" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Remote Host" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.25239617" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" /> | ||
| <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" /> | ||
| <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" /> | ||
| <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32871288" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="SLIDING" type="SLIDING" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" /> | ||
| <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" /> | ||
| <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" /> | ||
| </layout> | ||
| </component> | ||
| <component name="Vcs.Log.UiProperties"> | ||
| <option name="RECENTLY_FILTERED_USER_GROUPS"> | ||
| <collection /> | ||
| </option> | ||
| <option name="RECENTLY_FILTERED_BRANCH_GROUPS"> | ||
| <collection /> | ||
| </option> | ||
| </component> | ||
| <component name="VcsContentAnnotationSettings"> | ||
| <option name="myLimit" value="2678400000" /> | ||
| </component> | ||
| <component name="VcsManagerConfiguration"> | ||
| <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="false" /> | ||
| <option name="CHECK_NEW_TODO" value="false" /> | ||
| <option name="myTodoPanelSettings"> | ||
| <TodoPanelSettings /> | ||
| </option> | ||
| <MESSAGE value="initial commit" /> | ||
| <MESSAGE value="added filtering for sequences" /> | ||
| <MESSAGE value="fix package.json" /> | ||
| <MESSAGE value="bug fixes" /> | ||
| <MESSAGE value="removed debug logging" /> | ||
| <MESSAGE value="fixed readme" /> | ||
| <MESSAGE value="minor changes to readme" /> | ||
| <option name="LAST_COMMIT_MESSAGE" value="minor changes to readme" /> | ||
| </component> | ||
| <component name="XDebuggerManager"> | ||
| <breakpoint-manager /> | ||
| </component> | ||
| <component name="editorHistoryManager"> | ||
| <entry file="file://$PROJECT_DIR$/.jshintrc"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="450"> | ||
| <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| <entry file="file://$PROJECT_DIR$/README.md"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.0" vertical-offset="592" max-vertical-offset="1230"> | ||
| <caret line="57" column="0" selection-start-line="56" selection-start-column="0" selection-end-line="57" selection-end-column="0" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| <provider editor-type-id="MarkdownPreviewEditor"> | ||
| <state /> | ||
| </provider> | ||
| </entry> | ||
| <entry file="file://$PROJECT_DIR$/package.json"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.0" vertical-offset="105" max-vertical-offset="495"> | ||
| <caret line="7" column="15" selection-start-line="7" selection-start-column="15" selection-end-line="7" selection-end-column="15" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| <entry file="file://$PROJECT_DIR$/index.js"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.0" vertical-offset="1260" max-vertical-offset="1800"> | ||
| <caret line="84" column="6" selection-start-line="84" selection-start-column="6" selection-end-line="84" selection-end-column="6" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| <entry file="file://$PROJECT_DIR$/.jshintrc"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.0" vertical-offset="0" max-vertical-offset="450"> | ||
| <caret line="0" column="0" selection-start-line="0" selection-start-column="0" selection-end-line="0" selection-end-column="0" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| <entry file="file://$PROJECT_DIR$/package.json"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="-1.25" vertical-offset="0" max-vertical-offset="495"> | ||
| <caret line="2" column="19" selection-start-line="2" selection-start-column="19" selection-end-line="2" selection-end-column="19" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| <entry file="file://$PROJECT_DIR$/index.js"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.0" vertical-offset="760" max-vertical-offset="1800"> | ||
| <caret line="68" column="12" selection-start-line="68" selection-start-column="12" selection-end-line="68" selection-end-column="69" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| </entry> | ||
| <entry file="file://$PROJECT_DIR$/README.md"> | ||
| <provider selected="true" editor-type-id="text-editor"> | ||
| <state vertical-scroll-proportion="0.63723916" vertical-offset="413" max-vertical-offset="1290"> | ||
| <caret line="54" column="0" selection-start-line="54" selection-start-column="0" selection-end-line="54" selection-end-column="0" /> | ||
| <folding /> | ||
| </state> | ||
| </provider> | ||
| <provider editor-type-id="MarkdownPreviewEditor"> | ||
| <state /> | ||
| </provider> | ||
| </entry> | ||
| </component> | ||
| </project> | ||
AI-detected possible typosquat
Supply chain riskAI has identified this package as a potential typosquat of a more popular package. This suggests that the package may be intentionally mimicking another package's name, description, or other metadata.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
113
10.78%0
-100%8694
-70.69%6
-57.14%73
-9.88%1
Infinity%