Skip to content

Commit 9420778

Browse files
authored
Merge pull request #6 from emyann/feat/update-project-name
feat: update package name due to npm restrictions on title closeness
2 parents 32926d2 + c8fa57b commit 9420778

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "typescript-datastructures",
2+
"name": "typescript-generic-datastructures",
33
"version": "1.0.0",
44
"description": "",
55
"main": "index.js",
66
"scripts": {
7-
"start": "tsnd --respawn --transpileOnly ./src/examples/index.ts",
7+
"start": "tsnd --respawn ./src/examples/index.ts",
88
"build": "TS_NODE_PROJECT=\"tsconfig.webpack.json\" webpack --mode=production",
99
"semantic-release": "semantic-release",
1010
"test": "echo \"Error: no test specified\" && exit 1"

webpack.config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ const webpackconfiguration: webpack.Configuration = {
88
entry: path.resolve(__dirname, 'src', 'index.ts'),
99
devtool: isProd ? 'hidden-source-map' : 'source-map',
1010
output: {
11-
filename: 'typescript-datastructures.js',
11+
filename: 'typescript-generic-datastructures.js',
1212
path: path.resolve(__dirname, 'dist'),
1313
libraryTarget: 'umd',
1414
globalObject: 'this',
15-
sourceMapFilename: 'typescript-datastructures.map',
16-
library: 'typescript-datastructures'
15+
sourceMapFilename: 'typescript-generic-datastructures.map',
16+
library: 'typescript-generic-datastructures'
1717
},
1818
resolve: {
1919
extensions: ['.ts', '.js', '.json']

0 commit comments

Comments
 (0)