Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
PragmaFlow committed Feb 20, 2023
1 parent 8eed50b commit 357a848
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion module/src/noodl-react-nodes/plugins/DraggableBlock.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Modified by PragmaFlow, Inc for use in Noodl
*
*/
import './draggableBlock.css'
import './DraggableBlock.css'
import { defineReactNode } from '@noodl/noodl-sdk'

import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'
Expand Down
2 changes: 1 addition & 1 deletion module/src/noodl-react-nodes/plugins/FigmaPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { $insertNodeToNearestRoot } from '@lexical/utils'
import { COMMAND_PRIORITY_EDITOR, createCommand } from 'lexical'
import { useEffect } from 'react'

import { $createFigmaNode, FigmaNode } from '../../nodes/figmaNode'
import { $createFigmaNode, FigmaNode } from '../../nodes/FigmaNode'

export const INSERT_FIGMA_COMMAND = createCommand(
'INSERT_FIGMA_COMMAND'
Expand Down
2 changes: 1 addition & 1 deletion module/src/noodl-react-nodes/plugins/MentionsPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { useCallback, useEffect, useMemo, useState } from 'react'
import * as React from 'react'
import * as ReactDOM from 'react-dom'

import { $createMentionNode } from '../../nodes/mentionsNode'
import { $createMentionNode } from '../../nodes/MentionsNode'

const PUNCTUATION =
'\\.,\\+\\*\\?\\$\\@\\|#{}\\(\\)\\^\\-\\[\\]\\\\/!%\'"~=<>_:;'
Expand Down
2 changes: 1 addition & 1 deletion module/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const CleanWebpackPlugin = require('clean-webpack-plugin')
const CopyWebpackPlugin = require('copy-webpack-plugin')

const pjson = require('./package.json')
const outputPath = path.resolve('C:/Users/StevenMcKeown/AppData/Roaming/Noodl/projects/c2b0262b-9032-4b8f-a520-dc7d3220490e/noodl_modules/' + pjson.name)
const outputPath = path.resolve(__dirname, '../project/noodl_modules/' + pjson.name)

function stripStartDirectories(targetPath, numDirs) {
const p = targetPath.split('/')
Expand Down

0 comments on commit 357a848

Please sign in to comment.