Skip to content

Commit

Permalink
Fix paths to import parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
MrRonbot committed Aug 22, 2021
1 parent 2e0db27 commit 24322dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const {TwingExtension} = require('twing');
const TwingTokenParserCss = require('parsers/TwingTokenParserCss');
const TwingTokenParserJs = require('parsers/TwingTokenParserJs');
const TwingTokenParserCss = require('./parsers/TwingTokenParserCss');
const TwingTokenParserJs = require('./parsers/TwingTokenParserJs');

class CraftTwingExtension extends TwingExtension {
getTokenParsers() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "twing-craftcms-filters",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 24322dd

Please sign in to comment.