Skip to content

Commit dd3ffe0

Browse files
authored
Merge pull request #115 from tahabasri/feature/support-cursor
Import VS Code Snippets to Cursor
2 parents 9742604 + 9d205e3 commit dd3ffe0

File tree

10 files changed

+1676
-20
lines changed

10 files changed

+1676
-20
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# Change Log
2+
### 4.0.0
3+
24
### 3.1.0
35

46
- [[#81](https://github.com/tahabasri/snippets/pull/81)] Added support for language scope with icons and auto-detect ✌.

build/node-extension.webpack.config.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
'use strict';
44

55
const path = require('path');
6+
const CopyWebpackPlugin = require('copy-webpack-plugin');
67

78
/**@type {import('webpack').Configuration}*/
89
const config = {
@@ -37,6 +38,14 @@ const config = {
3738
]
3839
}
3940
]
40-
}
41+
},
42+
// https://github.com/TryGhost/node-sqlite3/issues/1783#issuecomment-2406481228
43+
plugins: [
44+
new CopyWebpackPlugin({
45+
patterns: [
46+
{ from: path.resolve(__dirname, '..', "node_modules/sqlite3/build/Release/node_sqlite3.node"), to: path.resolve(__dirname, '..', "build/node_sqlite3.node") }
47+
]
48+
})
49+
]
4150
};
4251
module.exports = config;

0 commit comments

Comments
 (0)