Skip to content

Commit

Permalink
feat: import rules from package relative paths
Browse files Browse the repository at this point in the history
...instead of importing through public path.
  • Loading branch information
philippfromme authored and nikku committed Jul 21, 2023
1 parent bfd24f1 commit abe4038
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 18 deletions.
22 changes: 14 additions & 8 deletions lib/support/compile-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ function createImportStatement(pkg, ruleName, idx, resolver) {
);
}

const rulePath = computeRuleImport(resolver, pkg, rule);
const rulePath = computeRuleImport(resolver, pkg, originalPkg, rule);

return `
import rule_${ idx } from '${rulePath}';
Expand All @@ -150,17 +150,23 @@ import rule_${ idx } from '${ pkg }/rules/${ ruleName }';
cache['${ originalPkg }/${ ruleName }'] = rule_${ idx };`;
}

function computeRuleImport(resolver, pkg, rule) {
function computeRuleImport(resolver, pkg, originalPkg, rule) {

// local reference, resolved relative to pkg location
if (rule.startsWith('.')) {
const pkgMain = resolver.require.resolve(pkg);
const pkgJsonPath = resolver.require.resolve(`${ pkg }/package.json`);

const pkgDir = path.dirname(pkgMain.split(path.sep).join(path.posix.sep));
const pkgMainPath = resolver.require.resolve(pkg);

return path.posix.normalize(path.posix.join(pkgDir, rule));
}
const relativePkgMainPath = path.relative(
path.dirname(pkgJsonPath),
path.dirname(pkgMainPath)
);

return path.posix.normalize(`${ originalPkg }/${ relativePkgMainPath }/${ rule }`);
} else {

// absolute reference
return path.posix.normalize(rule);
// absolute reference
return path.posix.normalize(rule);
}
}
8 changes: 4 additions & 4 deletions test/integration/bundling/test/app.webpack.expected.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ __webpack_require__.r(__webpack_exports__);
/* harmony import */ var bpmnlint_rules_start_event_required__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(bpmnlint_rules_start_event_required__WEBPACK_IMPORTED_MODULE_1__);
/* harmony import */ var bpmnlint_rules_end_event_required__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! bpmnlint/rules/end-event-required */ "./node_modules/bpmnlint/rules/end-event-required.js");
/* harmony import */ var bpmnlint_rules_end_event_required__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(bpmnlint_rules_end_event_required__WEBPACK_IMPORTED_MODULE_2__);
/* harmony import */ var _test_integration_bundling_node_modules_bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! bpmnlint-plugin-exported/src/foo */ "./node_modules/bpmnlint-plugin-exported/src/foo.js");
/* harmony import */ var _test_integration_bundling_node_modules_bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_test_integration_bundling_node_modules_bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3__);
/* harmony import */ var bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! bpmnlint-plugin-exported/src/foo */ "./node_modules/bpmnlint-plugin-exported/src/foo.js");
/* harmony import */ var bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3__);

const cache = {};

Expand Down Expand Up @@ -87,11 +87,11 @@ cache['bpmnlint/end-event-required'] = (bpmnlint_rules_end_event_required__WEBPA



cache['bpmnlint-plugin-exported/foo'] = (_test_integration_bundling_node_modules_bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3___default());
cache['bpmnlint-plugin-exported/foo'] = (bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3___default());



cache['bpmnlint-plugin-exported/foo-absolute'] = (_test_integration_bundling_node_modules_bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3___default());
cache['bpmnlint-plugin-exported/foo-absolute'] = (bpmnlint_plugin_exported_src_foo__WEBPACK_IMPORTED_MODULE_3___default());

/***/ }),

Expand Down
4 changes: 2 additions & 2 deletions test/integration/compilation/test/bpmnlintrc.expected.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,11 +153,11 @@ import rule_20 from 'bpmnlint-plugin-test/rules/no-label-foo';

cache['bpmnlint-plugin-test/no-label-foo'] = rule_20;

import rule_21 from '$ROOT/test/integration/compilation/node_modules/bpmnlint-plugin-exported/src/foo';
import rule_21 from 'bpmnlint-plugin-exported/src/foo';

cache['bpmnlint-plugin-exported/foo'] = rule_21;

import rule_22 from '$ROOT/test/integration/compilation/node_modules/bpmnlint-plugin-exported/src/bar';
import rule_22 from 'bpmnlint-plugin-exported/src/bar';

cache['bpmnlint-plugin-exported/bar'] = rule_22;

Expand Down
23 changes: 19 additions & 4 deletions test/spec/support/compile-config-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ const NodeResolver = require('../../../lib/resolver/node-resolver');

const compileConfig = require('../../../lib/support/compile-config');

const os = require('os');


describe('support/compile-config', function() {

Expand Down Expand Up @@ -95,18 +97,28 @@ describe('support/compile-config', function() {
throw new Error('not found: ' + path);
},
function __resolve(path) {
if (path === 'bpmnlint-plugin-foreign/package.json') {

if (path === 'bpmnlint-plugin-foreign') {
return 'bpmnlint-plugin-foreign/lib/index.js';
if (os.platform() === 'win32') {
return 'C:\\\\bpmnlint-plugin-foreign\\package.json';
} else {
return '/bpmnlint-plugin-foreign/package.json';
}
}

if (path === 'bpmnlint-plugin-foreign') {
if (os.platform() === 'win32') {
return 'C:\\\\bpmnlint-plugin-foreign\\lib\\index.js';
} else {
return '/bpmnlint-plugin-foreign/lib/index.js';
}
}

throw new Error('not found: ' + path);
}
)
});


// when
const code = await compileConfig({
extends: 'plugin:foreign/recommended'
Expand Down Expand Up @@ -153,6 +165,10 @@ describe('support/compile-config', function() {
throw new Error('not found: ' + path);
},
function __resolve(path) {
if (path === './package.json') {
return 'bpmnlint-plugin-local/package.json';
}

if (path === '.') {
return 'bpmnlint-plugin-local/lib/index.js';
}
Expand All @@ -162,7 +178,6 @@ describe('support/compile-config', function() {
)
});


// when
const code = await compileConfig({
extends: 'plugin:local/recommended'
Expand Down

0 comments on commit abe4038

Please sign in to comment.